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


PHP Assert::classExists方法代码示例

本文整理汇总了PHP中Webmozart\Assert\Assert::classExists方法的典型用法代码示例。如果您正苦于以下问题:PHP Assert::classExists方法的具体用法?PHP Assert::classExists怎么用?PHP Assert::classExists使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Webmozart\Assert\Assert的用法示例。


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

示例1: registerTagHandler

 /**
  * {@inheritDoc}
  */
 public function registerTagHandler($tagName, $handler)
 {
     Assert::stringNotEmpty($tagName);
     Assert::stringNotEmpty($handler);
     Assert::classExists($handler);
     Assert::implementsInterface($handler, StaticMethod::class);
     if (strpos($tagName, '\\') && $tagName[0] !== '\\') {
         throw new \InvalidArgumentException('A namespaced tag must have a leading backslash as it must be fully qualified');
     }
     $this->tagHandlerMappings[$tagName] = $handler;
 }
开发者ID:jaapio,项目名称:ReflectionDocBlock,代码行数:14,代码来源:StandardTagFactory.php

示例2: __construct

 /**
  * ContaoRepository constructor.
  *
  * @param string $modelClass Model class.
  */
 public function __construct($modelClass)
 {
     Assert::classExists($modelClass);
     Assert::subclassOf($modelClass, 'Model');
     $this->modelClass = $modelClass;
 }
开发者ID:netzmacht,项目名称:contao-toolkit,代码行数:11,代码来源:ContaoRepository.php

示例3: getReflectionClassWithProperty

 /**
  * Get a reflection class that has this property.
  *
  * @param string $class
  * @param string $propertyName
  *
  * @return \ReflectionClass|null
  *
  * @throws \InvalidArgumentException
  */
 protected static function getReflectionClassWithProperty($class, $propertyName)
 {
     Assert::string($class, 'First argument to Reflection::getReflectionClassWithProperty must be string. Variable of type "%s" was given.');
     Assert::classExists($class, 'Could not find class "%s"');
     $refl = new \ReflectionClass($class);
     if ($refl->hasProperty($propertyName)) {
         return $refl;
     }
     if (false === ($parent = get_parent_class($class))) {
         // No more parents
         return;
     }
     return self::getReflectionClassWithProperty($parent, $propertyName);
 }
开发者ID:nyholm,项目名称:nsa,代码行数:24,代码来源:NSA.php


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