mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-04-03 22:03:33 +03:00
Added support for deprecated phpdoc tag
This commit is contained in:
parent
629ee251da
commit
bb9fd6d756
1 changed files with 3 additions and 0 deletions
|
@ -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 *(.*)}i';
|
||||
|
|
Loading…
Add table
Reference in a new issue