Home
last modified time | relevance | path

Searched refs:tagLine (Results 1 – 3 of 3) sorted by relevance

/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/DocBlock/
H A DStandardTagFactory.php108 public function create($tagLine, TypeContext $context = null) argument
114 list($tagName, $tagBody) = $this->extractTagParts($tagLine);
118 … 'The tag "' . $tagLine . '" does not seem to be wellformed, please check it for errors'
163 * @param string $tagLine
167 private function extractTagParts($tagLine) argument
170 … if (! preg_match('/^@(' . self::REGEX_TAGNAME . ')(?:\s*([^\s].*)|$)/us', $tagLine, $matches)) {
172 … 'The tag "' . $tagLine . '" does not seem to be wellformed, please check it for errors'
H A DTagFactory.php63 * @param string $tagLine The text for this tag, including description.
70 public function create($tagLine, TypeContext $context = null); argument
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/
H A DDocBlockFactory.php230 foreach ($result as $key => $tagLine) {
231 $result[$key] = $this->tagFactory->create(trim($tagLine), $context);