1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-11-27 04:14:44 +01:00

Fix classname of Class_ in docblock of BuilderFactory

This commit is contained in:
Yuriy Vilks 2014-08-11 20:53:18 +02:00 committed by nikic
parent 22c76a3da4
commit 39f323b5ad

View File

@ -9,7 +9,7 @@ use PhpParser\Builder;
* _interface() and _function() in the class and are made available as class(), interface() and function()
* through __call() magic.
*
* @method Builder\Class class(string $name) Creates a class builder.
* @method Builder\Class_ class(string $name) Creates a class builder.
* @method Builder\Function_ function(string $name) Creates a function builder
* @method Builder\Interface_ interface(string $name) Creates an interface builder.
*/