本文整理汇总了PHP中Webmozart\Expression\Expr::isInstanceOf方法的典型用法代码示例。如果您正苦于以下问题:PHP Expr::isInstanceOf方法的具体用法?PHP Expr::isInstanceOf怎么用?PHP Expr::isInstanceOf使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Webmozart\Expression\Expr
的用法示例。
在下文中一共展示了Expr::isInstanceOf方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: 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;
}
示例2: orInstanceOf
public function orInstanceOf($className)
{
return $this->orX(Expr::isInstanceOf($className));
}
示例3: andInstanceOf
public function andInstanceOf($className)
{
return $this->andX(Expr::isInstanceOf($className));
}