当前位置: 首页>>代码示例>>PHP>>正文


PHP Expression\Expr类代码示例

本文整理汇总了PHP中Webmozart\Expression\Expr的典型用法代码示例。如果您正苦于以下问题:PHP Expr类的具体用法?PHP Expr怎么用?PHP Expr使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了Expr类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: testDomainExpressions

 public function testDomainExpressions()
 {
     $c1 = new Customer();
     $c1->setPremium(true);
     $c2 = new Customer();
     $c2->setBookings(array('booking1', 'booking2'));
     $c3 = new Customer();
     $c3->setPremium(true);
     $c3->setBookings(array('booking1'));
     $customers = array($c1, $c2, $c3);
     $this->assertEquals(array($c1, 2 => $c3), Expr::filter($customers, new IsPremium()));
     $this->assertEquals(array(1 => $c2, 2 => $c3), Expr::filter($customers, new HasPreviousBookings()));
     $this->assertEquals(array(2 => $c3), Expr::filter($customers, Expr::andX(array(new HasPreviousBookings(), new IsPremium()))));
 }
开发者ID:webmozart,项目名称:expression,代码行数:14,代码来源:DomainExpressionsTest.php

示例2: testRemoveBindingsWithTypeAndParameterWorksOnLoadedDiscovery

 public function testRemoveBindingsWithTypeAndParameterWorksOnLoadedDiscovery()
 {
     $binding1 = new StringBinding('string1', Foo::clazz, array('param2' => 'bar'));
     $binding2 = new StringBinding('string2', Foo::clazz);
     $binding3 = new StringBinding('string3', Foo::clazz, array('param1' => 'bar'));
     $discovery = $this->createDiscovery();
     $discovery->addBindingType(new BindingType(Foo::clazz, self::STRING_BINDING, array(new BindingParameter('param1', BindingParameter::OPTIONAL, 'foo'), new BindingParameter('param2'))));
     $discovery->addBinding($binding1);
     $discovery->addBinding($binding2);
     $discovery->addBinding($binding3);
     $discovery = $this->loadDiscoveryFromStorage($discovery);
     // Bindings need to be initialized for this to work
     $discovery->removeBindings(Foo::clazz, Expr::method('getParameterValue', 'param1', Expr::same('foo')));
     $this->assertEquals(array($binding3), $discovery->findBindings(Foo::clazz));
     $this->assertEquals(array($binding3), $discovery->getBindings());
 }
开发者ID:webmozart,项目名称:discovery,代码行数:16,代码来源:AbstractPersistentDiscoveryTest.php

示例3: handleList

 /**
  * Handles the "puli type --list" command.
  *
  * @param Args $args The console arguments.
  * @param IO   $io   The I/O.
  *
  * @return int The status code.
  */
 public function handleList(Args $args, IO $io)
 {
     $packageNames = ArgsUtil::getPackageNames($args, $this->packages);
     $states = $this->getBindingTypeStates($args);
     $printStates = count($states) > 1;
     $printPackageName = count($packageNames) > 1;
     $printHeaders = $printStates || $printPackageName;
     $printTypeAdvice = true;
     $printBindAdvice = false;
     $indentation = $printStates && $printPackageName ? 8 : ($printStates || $printPackageName ? 4 : 0);
     foreach ($states as $state) {
         $statePrinted = !$printStates;
         foreach ($packageNames as $packageName) {
             $expr = Expr::method('getContainingPackage', Expr::method('getName', Expr::same($packageName)))->andMethod('getState', Expr::same($state));
             $bindingTypes = $this->discoveryManager->findTypeDescriptors($expr);
             if (!$bindingTypes) {
                 continue;
             }
             $printTypeAdvice = false;
             if (!$statePrinted) {
                 $this->printBindingTypeState($io, $state);
                 $statePrinted = true;
                 // Only print the advice if at least one type was printed
                 $printBindAdvice = true;
             }
             if ($printPackageName) {
                 $prefix = $printStates ? '    ' : '';
                 $io->writeLine("{$prefix}Package: {$packageName}");
                 $io->writeLine('');
             }
             $styleTag = BindingTypeState::ENABLED === $state ? null : 'bad';
             $this->printTypeTable($io, $bindingTypes, $styleTag, $indentation);
             if ($printHeaders) {
                 $io->writeLine('');
             }
         }
     }
     if ($printTypeAdvice) {
         $io->writeLine('No types defined. Use "puli type --define <name>" to define a type.');
     }
     if ($printBindAdvice) {
         $io->writeLine('Use "puli bind <resource> <type>" to bind a resource to a type.');
     }
     return 0;
 }
开发者ID:SenseException,项目名称:cli,代码行数:53,代码来源:TypeCommandHandler.php

示例4: clearPluginClasses

 /**
  * {@inheritdoc}
  */
 public function clearPluginClasses()
 {
     $this->removePluginClasses(Expr::true());
 }
开发者ID:kormik,项目名称:manager,代码行数:7,代码来源:RootPackageFileManagerImpl.php

示例5: testAppendDefaultQuerySuffixForEndsWith

 public function testAppendDefaultQuerySuffixForEndsWith()
 {
     $expr1 = Expr::endsWith('.css', AssetMapping::GLOB);
     $expr2 = Expr::same(BindingState::ENABLED, BindingDescriptor::STATE)->andSame(DiscoveryUrlGenerator::BINDING_TYPE, BindingDescriptor::TYPE_NAME)->andEndsWith('{,/**/*}', BindingDescriptor::QUERY)->andEndsWith('.css{,/**/*}', BindingDescriptor::QUERY);
     $this->assertEquals($expr2, $this->builder->buildExpression($expr1));
 }
开发者ID:niklongstone,项目名称:manager,代码行数:6,代码来源:BindingExpressionBuilderTest.php

示例6: testHasBindings

 public function testHasBindings()
 {
     $this->initDefaultManager();
     $this->rootPackageFile->addTypeDescriptor(new BindingTypeDescriptor('my/type1'));
     $this->rootPackageFile->addBindingDescriptor($binding1 = new BindingDescriptor('/path1', 'my/type1'));
     $this->packageFile1->addBindingDescriptor($binding2 = new BindingDescriptor('/path2', 'my/type2'));
     $expr1 = Expr::same('vendor/package1', BindingDescriptor::CONTAINING_PACKAGE);
     $expr2 = Expr::same(BindingState::ENABLED, BindingDescriptor::STATE);
     $expr3 = $expr1->andX($expr2);
     $this->assertTrue($this->manager->hasBindings());
     $this->assertTrue($this->manager->hasBindings($expr1));
     $this->assertTrue($this->manager->hasBindings($expr2));
     $this->assertFalse($this->manager->hasBindings($expr3));
 }
开发者ID:niklongstone,项目名称:manager,代码行数:14,代码来源:DiscoveryManagerImplTest.php

示例7: findByBindingType

 /**
  * Finds the resources for a given binding type.
  *
  * @param string $typeName The type name.
  *
  * @return string[] An array of short resource class names indexed by
  *                  the resource path.
  */
 private function findByBindingType($typeName)
 {
     $matches = array();
     $expr = Expr::isInstanceOf('Puli\\Discovery\\Binding\\ResourceBinding');
     foreach ($this->discovery->findBindings($typeName, $expr) as $binding) {
         /** @var ResourceBinding $binding */
         foreach ($binding->getResources() as $resource) {
             $matches[$resource->getPath()] = StringUtil::getShortClassName(get_class($resource));
         }
     }
     ksort($matches);
     return $matches;
 }
开发者ID:holloway87,项目名称:cli,代码行数:21,代码来源:FindCommandHandler.php

示例8: hasRootPathMappings

 /**
  * {@inheritdoc}
  */
 public function hasRootPathMappings(Expression $expr = null)
 {
     $expr2 = Expr::same($this->rootPackage->getName(), PathMapping::CONTAINING_PACKAGE);
     if ($expr) {
         $expr2 = $expr2->andX($expr);
     }
     return $this->hasPathMappings($expr2);
 }
开发者ID:niklongstone,项目名称:manager,代码行数:11,代码来源:RepositoryManagerImpl.php

示例9: clearServers

 /**
  * {@inheritdoc}
  */
 public function clearServers()
 {
     $this->removeServers(Expr::true());
 }
开发者ID:niklongstone,项目名称:manager,代码行数:7,代码来源:PackageFileServerManager.php

示例10: getDiscoveryManager

 /**
  * Returns the resource discovery manager.
  *
  * @return DiscoveryManager The discovery manager.
  */
 public function getDiscoveryManager()
 {
     if (!$this->started) {
         throw new LogicException('Puli was not started');
     }
     if (!$this->discoveryManager && $this->context instanceof ProjectContext) {
         $this->discoveryManager = new DiscoveryManagerImpl($this->context, $this->getDiscovery(), $this->getPackageManager()->findPackages(Expr::method('isEnabled', Expr::same(true))), $this->getPackageFileStorage(), $this->logger);
     }
     return $this->discoveryManager;
 }
开发者ID:xabbuh,项目名称:manager,代码行数:15,代码来源:Puli.php

示例11: testRemoveConfigKeysRevertsIfSavingNotPossible

 public function testRemoveConfigKeysRevertsIfSavingNotPossible()
 {
     $this->configFile->getConfig()->set(Config::PULI_DIR, 'my-puli-dir');
     $this->configFileStorage->expects($this->once())->method('saveConfigFile')->willThrowException(new TestException());
     try {
         $this->manager->removeConfigKeys(Expr::in(array(Config::PULI_DIR, Config::FACTORY_IN_FILE)));
         $this->fail('Expected a TestException');
     } catch (TestException $e) {
     }
     $this->assertTrue($this->configFile->getConfig()->contains(Config::PULI_DIR));
     $this->assertFalse($this->configFile->getConfig()->contains(Config::FACTORY_IN_FILE));
     $this->assertSame('my-puli-dir', $this->configFile->getConfig()->get(Config::PULI_DIR));
 }
开发者ID:niklongstone,项目名称:manager,代码行数:13,代码来源:ConfigFileManagerImplTest.php

示例12: clearModules

 /**
  * {@inheritdoc}
  */
 public function clearModules()
 {
     $this->removeModules(Expr::true());
 }
开发者ID:sensorario,项目名称:manager,代码行数:7,代码来源:ModuleManagerImpl.php

示例13: getMappingByUuidPrefix

 /**
  * @param string $uuidPrefix
  *
  * @return AssetMapping
  */
 private function getMappingByUuidPrefix($uuidPrefix)
 {
     $expr = Expr::startsWith($uuidPrefix, AssetMapping::UUID);
     $mappings = $this->assetManager->findAssetMappings($expr);
     if (!$mappings) {
         throw new RuntimeException(sprintf('The mapping with the UUID prefix "%s" does not exist.', $uuidPrefix));
     }
     if (count($mappings) > 1) {
         throw new RuntimeException(sprintf('More than one mapping matches the UUID prefix "%s".', $uuidPrefix));
     }
     return reset($mappings);
 }
开发者ID:rejinka,项目名称:cli,代码行数:17,代码来源:PublishCommandHandler.php

示例14: hasAssetMapping

 /**
  * {@inheritdoc}
  */
 public function hasAssetMapping(Uuid $uuid)
 {
     $expr = Expr::method('getUuid', Expr::method('toString', Expr::same($uuid->toString())))->andX($this->exprBuilder->buildExpression());
     return $this->discoveryManager->hasBindingDescriptors($expr);
 }
开发者ID:SenseException,项目名称:manager,代码行数:8,代码来源:DiscoveryAssetManager.php

示例15: getSelectedPackages

 /**
  * Returns the packages that should be displayed for the given console
  * arguments.
  *
  * @param Args $args The console arguments.
  *
  * @return PackageCollection The packages.
  */
 private function getSelectedPackages(Args $args)
 {
     $states = $this->getSelectedStates($args);
     $expr = Expr::true();
     if ($states != PackageState::all()) {
         $expr = $expr->andIn($states, Package::STATE);
     }
     if ($args->isOptionSet('installer')) {
         $expr = $expr->andSame($args->getOption('installer'), Package::INSTALLER);
     }
     return $this->packageManager->findPackages($expr);
 }
开发者ID:rejinka,项目名称:cli,代码行数:20,代码来源:PackageCommandHandler.php


注:本文中的Webmozart\Expression\Expr类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。