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


PHP XPClass::detailsForMethod方法代碼示例

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


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

示例1: verify

 /**
  * Verifies a reflection function or method
  *
  * @param  php.ReflectionFunctionAbstract $value
  * @param  [lang.Type] $signature
  * @param  function(string): var $value A function to invoke when verification fails
  * @param  php.ReflectionClass $class Class to get details from, optionally
  * @return var
  */
 protected function verify($r, $signature, $false, $class = null)
 {
     if (null !== $signature && sizeof($signature) < $r->getNumberOfRequiredParameters()) {
         return $false('Required signature length mismatch, expecting ' . sizeof($signature) . ', have ' . $r->getNumberOfParameters());
     }
     $details = $class ? XPClass::detailsForMethod($class->getName(), $r->getName()) : null;
     if (isset($details[DETAIL_RETURNS])) {
         $returns = Type::forName($details[DETAIL_RETURNS]);
         if (!$this->returns->equals($returns) && !$this->returns->isAssignableFrom($returns)) {
             return $false('Return type mismatch, expecting ' . $this->returns->getName() . ', have ' . $returns->getName());
         }
     }
     if (null === $signature) {
         return true;
     }
     $params = $r->getParameters();
     foreach ($signature as $i => $type) {
         if (!isset($params[$i])) {
             return $false('No parameter #' . ($i + 1));
         }
         if (isset($details[DETAIL_ARGUMENTS][$i])) {
             $param = Type::forName($details[DETAIL_ARGUMENTS][$i]);
             if (!$type->isAssignableFrom($param)) {
                 return $false('Parameter #' . ($i + 1) . ' not a ' . $param->getName() . ' type: ' . $type->getName());
             }
         } else {
             $param = $params[$i];
             if ($param->isArray()) {
                 if (!$type->equals(Primitive::$ARRAY) && !$type instanceof ArrayType && !$type instanceof MapType) {
                     return $false('Parameter #' . ($i + 1) . ' not an array type: ' . $type->getName());
                 }
             } else {
                 if ($param->isCallable()) {
                     if (!$type instanceof FunctionType) {
                         return $false('Parameter #' . ($i + 1) . ' not a function type: ' . $type->getName());
                     }
                 } else {
                     if (null !== ($class = $param->getClass())) {
                         if (!$type->isAssignableFrom(new XPClass($class))) {
                             return $false('Parameter #' . ($i + 1) . ' not a ' . $class->getName() . ': ' . $type->getName());
                         }
                     }
                 }
             }
         }
     }
     return true;
 }
開發者ID:johannes85,項目名稱:core,代碼行數:57,代碼來源:FunctionType.class.php

示例2: getAnnotations

 /**
  * Retrieve all of a method's annotations
  *
  * @return [:var] annotations
  */
 public function getAnnotations()
 {
     $details = XPClass::detailsForMethod($this->_reflect->getDeclaringClass(), $this->_reflect->getName());
     return $details ? $details[DETAIL_ANNOTATIONS] : [];
 }
開發者ID:xp-framework,項目名稱:core,代碼行數:10,代碼來源:Routine.class.php

示例3: getAnnotations

 /**
  * Retrieve all of a method's annotations
  *
  * @return  var[] annotations
  */
 public function getAnnotations()
 {
     $n = '$' . $this->_reflect->getName();
     if (!($details = XPClass::detailsForMethod($this->_details[0], $this->_details[1])) || !isset($details[DETAIL_TARGET_ANNO][$n])) {
         // Unknown or unparseable
         return array();
     }
     return $details[DETAIL_TARGET_ANNO][$n];
 }
開發者ID:Gamepay,項目名稱:xp-framework,代碼行數:14,代碼來源:Parameter.class.php


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