You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<?php$docblock = <<<DOCBLOCK/** * This is a short (...) description. * * This is a long description. * * @return void */DOCBLOCK;
$phpdoc = new \phpDocumentor\Reflection\DocBlock($docblock);
echo$phpdoc->getShortDescription() . PHP_EOL;
Expected output: This is a short (...) description.