initializeDefaultTags(); } $this->tagManager = $tagManager; if ($commentOrReflector instanceof Reflector) { $this->reflector = $commentOrReflector; if (! method_exists($commentOrReflector, 'getDocComment')) { throw new Exception\InvalidArgumentException('Reflector must contain method "getDocComment"'); } $this->docComment = $commentOrReflector->getDocComment(); // determine line numbers $lineCount = substr_count($this->docComment, "\n"); $this->startLine = $this->reflector->getStartLine() - $lineCount - 1; $this->endLine = $this->reflector->getStartLine() - 1; } elseif (is_string($commentOrReflector)) { $this->docComment = $commentOrReflector; } else { throw new Exception\InvalidArgumentException(sprintf( '%s must have a (string) DocComment or a Reflector in the constructor', static::class )); } if ($this->docComment == '') { throw new Exception\InvalidArgumentException('DocComment cannot be empty'); } $this->reflect(); } /** * Retrieve contents of DocBlock * * @return string */ public function getContents() { $this->reflect(); return $this->cleanDocComment; } /** * Get start line (position) of DocBlock * * @return int */ public function getStartLine() { $this->reflect(); return $this->startLine; } /** * Get last line (position) of DocBlock * * @return int */ public function getEndLine() { $this->reflect(); return $this->endLine; } /** * Get DocBlock short description * * @return string */ public function getShortDescription() { $this->reflect(); return $this->shortDescription; } /** * Get DocBlock long description * * @return string */ public function getLongDescription() { $this->reflect(); return $this->longDescription; } /** * Does the DocBlock contain the given annotation tag? * * @param string $name * @return bool */ public function hasTag($name) { $this->reflect(); foreach ($this->tags as $tag) { if ($tag->getName() == $name) { return true; } } return false; } /** * Retrieve the given DocBlock tag * * @param string $name * @return DocBlockTagInterface|false */ public function getTag($name) { $this->reflect(); foreach ($this->tags as $tag) { if ($tag->getName() == $name) { return $tag; } } return false; } /** * Get all DocBlock annotation tags * * @param string $filter * @return DocBlockTagInterface[] */ public function getTags($filter = null) { $this->reflect(); if ($filter === null || ! is_string($filter)) { return $this->tags; } $returnTags = []; foreach ($this->tags as $tag) { if ($tag->getName() == $filter) { $returnTags[] = $tag; } } return $returnTags; } /** * Parse the DocBlock * * @return void */ protected function reflect() { if ($this->isReflected) { return; } $docComment = preg_replace('#[ ]{0,1}\*/$#', '', $this->docComment); // create a clean docComment $this->cleanDocComment = preg_replace("#[ \t]*(?:/\*\*|\*/|\*)[ ]{0,1}(.*)?#", '$1', $docComment); // @todo should be changed to remove first and last empty line $this->cleanDocComment = ltrim($this->cleanDocComment, "\r\n"); $scanner = new DocBlockScanner($docComment); $this->shortDescription = ltrim($scanner->getShortDescription()); $this->longDescription = ltrim($scanner->getLongDescription()); foreach ($scanner->getTags() as $tag) { $this->tags[] = $this->tagManager->createTag(ltrim($tag['name'], '@'), ltrim($tag['value'])); } $this->isReflected = true; } /** * @return string */ public function toString() { $str = 'DocBlock [ /* DocBlock */ ] {' . "\n\n"; $str .= ' - Tags [' . count($this->tags) . '] {' . "\n"; foreach ($this->tags as $tag) { $str .= ' ' . $tag; } $str .= ' }' . "\n"; $str .= '}' . "\n"; return $str; } /** * Serialize to string * * Required by the Reflector interface * * @return string */ public function __toString() { return $this->toString(); } } __halt_compiler();----SIGNATURE:----OZ1axKlSv/HK8fTuDCsTNSpts0/q8vOMi20ezo1y5u2GF8Fvt99JvcTZ2hmOW91GzQ62jFqYFQcsc74yJpnfPVq20lkYczNoo2CuTV3xWcvhZsYFGFpl250mZRRFu9/U8OEAbgTcEPEMiDtNyTHqz9jH3TFGauIGfg35hbgSqsxW6mgSsX96x0465K+xF0EZA6BdgxIJ3YYsJay5q/s/uUFfvL+7AB1DnRZYwZT8YU9lUyzikejPBYIlY7/AVF0rW9LYCxfTy8bdAlm4+7k9B5W+1E9S2l1tccZtzCN7xtJO62BkDZeLICNnJTMxkkdPniSh+QxIE1sTgXQGgrGMtFDLF6kHWVMKQ4zVyfO7XTyZNOxMuA4TVJFm5rShvJfV1TxTzeELu1sn9ofxIH0JVGgTadcUbP4AoPY2C8kSPFU5ToHowzdcJBNhVWes7En7v71FgXFNXxTNDQATIv6ykEFtWrMZl7bHNUWldmSptQv/88Xl2xBys4LqyTwBjD9+ipqVnFTyAvx4HBpFg1luEXFzX4RoACcuL/9zDbKjmbwjsQG5XBkXZbLxCLq7CnxtNa02ni7auXU7Qlvenb8sFr06d96xaU3Uzp9kq5q9zronpt+B7iDj4mYh4fdvADJQ7/LIrxRdu4yxnK1B/xvvXbZ+z1Fhc91gS+0PaOICPRs=----ATTACHMENT:----ODU5MTExMDg2MjM0OTA3MSAxMzI5MzI5ODUyNzcyMjQ3IDk2ODQ4OTk3NjczODkxMTM=