123456789101112131415161718 |
- <?php declare(strict_types=1);
- namespace phpDocumentor\Reflection;
- interface DocBlockFactoryInterface
- {
- /**
- * Factory method for easy instantiation.
- *
- * @param string[] $additionalTags
- */
- public static function createInstance(array $additionalTags = []): DocBlockFactory;
- /**
- * @param string|object $docblock
- */
- public function create($docblock, ?Types\Context $context = null, ?Location $location = null): DocBlock;
- }
|