Merge branch 'deprecated'

This commit is contained in:
Mario Franco 2013-04-16 16:40:34 +01:00
commit b31ca81d9e

View File

@ -320,6 +320,9 @@ class ApiDocExtractor
if (preg_match('{^@param (.+)}', trim($line), $matches)) {
$paramDocs[] = $matches[1];
}
if (preg_match('{^@deprecated\b(.*)}', trim($line), $matches)) {
$annotation->setDeprecated(true);
}
}
$regexp = '{(\w*) *\$%s\b *(.*)}i';