mirror of
https://github.com/barryvdh/ReflectionDocBlock.git
synced 2026-08-18 18:13:13 +00:00
22 lines
563 B
PHP
22 lines
563 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace phpDocumentor\Reflection;
|
|
|
|
// phpcs:ignore SlevomatCodingStandard.Classes.SuperfluousInterfaceNaming.SuperfluousSuffix
|
|
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;
|
|
}
|