Renamed HelpParser::getFull() to HelpParser::getDetail()

This commit is contained in:
Alexander Makarov
2014-09-04 20:20:15 +04:00
parent d549aa39a7
commit fbdf2ef461
3 changed files with 4 additions and 4 deletions

View File

@ -38,7 +38,7 @@ class HelpParser
* @param \Reflector $reflector
* @return string
*/
public static function getFull(\Reflector $reflector)
public static function getDetail(\Reflector $reflector)
{
$comment = strtr(trim(preg_replace('/^\s*\**( |\t)?/m', '', trim($reflector->getDocComment(), '/'))), "\r", '');
if (preg_match('/^\s*@\w+/m', $comment, $matches, PREG_OFFSET_CAPTURE)) {