當前位置: 首頁>>代碼示例>>PHP>>正文


PHP ParameterBag::__construct方法代碼示例

本文整理匯總了PHP中Symfony\Component\HttpFoundation\ParameterBag::__construct方法的典型用法代碼示例。如果您正苦於以下問題:PHP ParameterBag::__construct方法的具體用法?PHP ParameterBag::__construct怎麽用?PHP ParameterBag::__construct使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Symfony\Component\HttpFoundation\ParameterBag的用法示例。


在下文中一共展示了ParameterBag::__construct方法的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: __construct

 /**
  * Constructor.
  *
  * @param array $headers An array of HTTP files
  */
 public function __construct(array $parameters = array())
 {
     // this line is not necessary, but including it avoids any stupid
     // errors if we add code to the parent's constructor
     parent::__construct();
     $this->replace($parameters);
 }
開發者ID:faridos,項目名稱:ServerGroveLiveChat,代碼行數:12,代碼來源:FileBag.php

示例2: __construct

 /**
  * @param OriginInterface $origin
  * @param Feed            $feed
  * @param string          $originalId
  * @param array           $parameters
  */
 public function __construct(OriginInterface $origin, Feed $feed, $originalId, array $parameters = [])
 {
     parent::__construct($parameters);
     $this->origin = $origin;
     $this->originalId = $originalId;
     $this->feed = $feed;
 }
開發者ID:mvanduijker,項目名稱:FMIoBundle,代碼行數:13,代碼來源:FeedItemBag.php

示例3: __construct

 /**
  * Constructor.
  *
  * @param array $config
  */
 public function __construct(array $config)
 {
     parent::__construct($config);
     foreach ($config['locales'] as $name => $parameters) {
         $this->parameters['locales'][$name] = new Locale($parameters);
     }
 }
開發者ID:AnimalDesign,項目名稱:bolt-translate,代碼行數:12,代碼來源:Config.php

示例4: __construct

 /**
  * Constructor.
  *
  * @param JsonFile $composerJson
  * @param array    $composerOverrides
  * @param bool     $setDefaults
  */
 public function __construct(JsonFile $composerJson, array $composerOverrides, $setDefaults = true)
 {
     parent::__construct($composerOverrides);
     /** @var Filesystem $extensionFs */
     $extensionFs = $composerJson->getFilesystem();
     /** @var Local $adapter */
     $adapter = $extensionFs->getAdapter();
     $this->set('baseDir', $adapter->getPathPrefix());
     $this->set('composerJson', $composerJson);
 }
開發者ID:gandalf3,項目名稱:bolt,代碼行數:17,代碼來源:Options.php

示例5: __construct

 public function __construct(array $parameters)
 {
     parent::__construct($parameters);
     $this->set('addons', new ParameterBag($parameters['addons']));
     $this->set('labels', new ParameterBag($parameters['labels']));
     $this->set('placeholders', new ParameterBag($parameters['placeholders']));
     $templates = new ParameterBag();
     foreach ($parameters['templates'] as $type => $values) {
         $templates->set($type, new ParameterBag($parameters['templates'][$type]));
     }
     $this->set('templates', $templates);
 }
開發者ID:bolt,項目名稱:Members,代碼行數:12,代碼來源:Forms.php

示例6: __construct

 public function __construct(\Closure $legacyKernelClosure)
 {
     $this->legacyKernelClosure = $legacyKernelClosure;
     parent::__construct();
 }
開發者ID:dfritschy,項目名稱:ezpublish-kernel,代碼行數:5,代碼來源:LegacyHelper.php

示例7: __construct

 /**
  * {@inheritdoc}
  */
 public function __construct(array $parameters = array())
 {
     parent::__construct($parameters);
 }
開發者ID:florianajir,項目名稱:datanova-bundle,代碼行數:7,代碼來源:Parameters.php

示例8: __construct

 /**
  * @param string $transactionId
  * @param array $transactionData
  */
 public function __construct($transactionId, array $transactionData)
 {
     $this->transaction_id = $transactionId;
     parent::__construct($transactionData);
 }
開發者ID:Tezd,項目名稱:gemu,代碼行數:9,代碼來源:Request.php

示例9: __construct

 public function __construct($parameters = array())
 {
     $this->namespaces = array_unique(array_merge(array_keys($parameters), $this->protected_namespaces));
     parent::__construct($parameters);
 }
開發者ID:faz-b,項目名稱:configuration-silex-provider,代碼行數:5,代碼來源:Configuration.php


注:本文中的Symfony\Component\HttpFoundation\ParameterBag::__construct方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。