Searched refs:getDocComment (Results 1 – 12 of 12) sorted by relevance
/plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/ |
H A D | SimpleAnnotationReader.php | 67 return $this->parser->parse($class->getDocComment(), 'class '.$class->getName()); 75 …return $this->parser->parse($method->getDocComment(), 'method '.$method->getDeclaringClass()->name… 83 …return $this->parser->parse($property->getDocComment(), 'property '.$property->getDeclaringClass()…
|
H A D | AnnotationReader.php | 222 return $this->parser->parse($class->getDocComment(), 'class ' . $class->getName()); 254 return $this->parser->parse($property->getDocComment(), $context); 286 return $this->parser->parse($method->getDocComment(), $context); 405 …$annotations = $this->preParser->parse($class->getDocComment(), 'class ' . $class->name…
|
H A D | DocParser.php | 500 $docComment = $class->getDocComment(); 539 if (false === ($propertyComment = $property->getDocComment())) {
|
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/ |
H A D | Test.php | 167 $docComment = $reflector->getDocComment(); 169 $docComment .= "\n" . $reflector->getDocComment(); 290 $docComment = $reflector->getDocComment(); 376 $docComment = $reflector->getDocComment(); 534 self::$annotationCache[$className] = self::parseAnnotations($class->getDocComment()); 540 $annotations = self::parseAnnotations($method->getDocComment()); 1067 return $method->isStatic() && strpos($method->getDocComment(), '@beforeClass') !== false; 1077 return preg_match('/@before\b/', $method->getDocComment()); 1087 return $method->isStatic() && strpos($method->getDocComment(), '@afterClass') !== false; 1097 return preg_match('/@after\b/', $method->getDocComment());
|
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/PhpDocumentor/ |
H A D | LegacyClassTagRetriever.php | 31 $phpdoc = new DocBlock($reflectionClass->getDocComment());
|
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/DocBlock/ |
H A D | Serializer.php | 69 public function getDocComment(DocBlock $docblock) function in phpDocumentor\\Reflection\\DocBlock\\Serializer
|
/plugin/combo/vendor/php-webdriver/webdriver/lib/Remote/Service/ |
H A D | DriverService.php | 170 && mb_strpos('@deprecated', (new \ReflectionClass(ProcessBuilder::class))->getDocComment()) === false
|
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/ |
H A D | DocBlockFactory.php | 81 $docblock = $docblock->getDocComment();
|
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/ |
H A D | README.md | 32 `getDocComment()` method, such as an object of type `ReflectionClass`, the
|
/plugin/mdpage/vendor/cebe/markdown/ |
H A D | Parser.php | 278 preg_match_all('/@marker ([^\s]+)/', $method->getDocComment(), $matches);
|
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/ |
H A D | TestSuite.php | 888 $docComment = $method->getDocComment();
|
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/ |
H A D | Generator.php | 1012 …]*+@deprecated[ \t]*+(.*?)\r?+\n[ \t]*+\*(?:[ \t]*+@|/$)#s', $method->getDocComment(), $deprecatio…
|