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


PHP Type::isAbstractType方法代码示例

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


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

示例1: isTypeSubTypeOf

 /**
  * Provided a type and a super type, return true if the first type is either
  * equal or a subset of the second super type (covariant).
  */
 static function isTypeSubTypeOf(Schema $schema, Type $maybeSubType, Type $superType)
 {
     // Equivalent type is a valid subtype
     if ($maybeSubType === $superType) {
         return true;
     }
     // If superType is non-null, maybeSubType must also be nullable.
     if ($superType instanceof NonNull) {
         if ($maybeSubType instanceof NonNull) {
             return self::isTypeSubTypeOf($schema, $maybeSubType->getWrappedType(), $superType->getWrappedType());
         }
         return false;
     } else {
         if ($maybeSubType instanceof NonNull) {
             // If superType is nullable, maybeSubType may be non-null.
             return self::isTypeSubTypeOf($schema, $maybeSubType->getWrappedType(), $superType);
         }
     }
     // If superType type is a list, maybeSubType type must also be a list.
     if ($superType instanceof ListOfType) {
         if ($maybeSubType instanceof ListOfType) {
             return self::isTypeSubTypeOf($schema, $maybeSubType->getWrappedType(), $superType->getWrappedType());
         }
         return false;
     } else {
         if ($maybeSubType instanceof ListOfType) {
             // If superType is not a list, maybeSubType must also be not a list.
             return false;
         }
     }
     // If superType type is an abstract type, maybeSubType type may be a currently
     // possible object type.
     if (Type::isAbstractType($superType) && $maybeSubType instanceof ObjectType && $schema->isPossibleType($superType, $maybeSubType)) {
         return true;
     }
     // Otherwise, the child type is not a valid subtype of the parent type.
     return false;
 }
开发者ID:aeshion,项目名称:ZeroPHP,代码行数:42,代码来源:TypeInfo.php


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