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


PHP BuilderConfiguration::hasParameter方法代碼示例

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


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

示例1: configLoad

 /**
  * Loads the Propel configuration.
  *
  * @param array $config A configuration array
  *
  * @return BuilderConfiguration A BuilderConfiguration instance
  */
 public function configLoad($config, BuilderConfiguration $configuration)
 {
     if (!$configuration->hasDefinition('propel')) {
         $loader = new XmlFileLoader(__DIR__ . '/../Resources/config');
         $configuration->merge($loader->load($this->resources['propel']));
     }
     if (!$configuration->hasParameter('propel.path')) {
         if (!isset($config['path'])) {
             throw new \InvalidArgumentException('The "path" parameter is mandatory.');
         }
         $configuration->setParameter('propel.path', $config['path']);
     }
     if (isset($config['path'])) {
         $configuration->setParameter('propel.path', $config['path']);
     }
     if (isset($config['phing_path'])) {
         $configuration->setParameter('propel.phing_path', $config['phing_path']);
     }
 }
開發者ID:klaasn,項目名稱:symfony-sandbox,代碼行數:26,代碼來源:PropelExtension.php

示例2: BuilderConfiguration

$t->is($configuration->getParameter('FOO'), 'baz1', '->getParameter() converts the key to lowercase');

try
{
  $configuration->getParameter('baba');
  $t->fail('->getParameter() throws an \InvalidArgumentException if the key does not exist');
}
catch (\InvalidArgumentException $e)
{
  $t->pass('->getParameter() throws an \InvalidArgumentException if the key does not exist');
}

// ->hasParameter()
$t->diag('->hasParameter()');
$configuration = new BuilderConfiguration(array(), array('foo' => 'bar'));
$t->ok($configuration->hasParameter('foo'), '->hasParameter() returns true if a parameter is defined');
$t->ok($configuration->hasParameter('Foo'), '->hasParameter() converts the key to lowercase');
$t->ok(!$configuration->hasParameter('bar'), '->hasParameter() returns false if a parameter is not defined');

// ->addParameters()
$t->diag('->addParameters()');
$configuration = new BuilderConfiguration(array(), array('foo' => 'bar'));
$configuration->addParameters(array('bar' => 'foo'));
$t->is($configuration->getParameters(), array('foo' => 'bar', 'bar' => 'foo'), '->addParameters() adds parameters to the existing ones');
$configuration->addParameters(array('Bar' => 'fooz'));
$t->is($configuration->getParameters(), array('foo' => 'bar', 'bar' => 'fooz'), '->addParameters() converts keys to lowercase');

// ->setAlias() ->getAlias() ->hasAlias() ->getAliases() ->addAliases()
$t->diag('->setAlias() ->getAlias() ->hasAlias()');
$configuration = new BuilderConfiguration();
$configuration->setAlias('bar', 'foo');
開發者ID:nicolasmartin,項目名稱:symfony,代碼行數:31,代碼來源:BuilderConfigurationTest.php

示例3: testHasParameter

 public function testHasParameter()
 {
     $configuration = new BuilderConfiguration(array(), array('foo' => 'bar'));
     $this->assertTrue($configuration->hasParameter('foo'), '->hasParameter() returns true if a parameter is defined');
     $this->assertTrue($configuration->hasParameter('Foo'), '->hasParameter() converts the key to lowercase');
     $this->assertFalse($configuration->hasParameter('bar'), '->hasParameter() returns false if a parameter is not defined');
 }
開發者ID:jacques-sounvi,項目名稱:addressbook,代碼行數:7,代碼來源:BuilderConfigurationTest.php


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