interface DocBlockFactoryInterface
Hierarchy
- interface \phpDocumentor\Reflection\DocBlockFactoryInterface
Expanded class hierarchy of DocBlockFactoryInterface
All classes that implement DocBlockFactoryInterface
File
-
vendor/
phpdocumentor/ reflection-docblock/ src/ DocBlockFactoryInterface.php, line 10
Namespace
phpDocumentor\ReflectionView source
interface DocBlockFactoryInterface {
/**
* Factory method for easy instantiation.
*
* @param array<string, class-string<Tag>> $additionalTags
*/
public static function createInstance(array $additionalTags = []) : self;
/**
* @param string|object $docblock
*/
public function create($docblock, ?Types\Context $context = null, ?Location $location = null) : DocBlock;
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overrides |
---|---|---|---|---|
DocBlockFactoryInterface::create | public | function | 1 | |
DocBlockFactoryInterface::createInstance | public static | function | Factory method for easy instantiation. | 1 |