Initial Commit
This commit is contained in:
20
dependencies/phpdocumentor/reflection-docblock/src/DocBlockFactoryInterface.php
vendored
Normal file
20
dependencies/phpdocumentor/reflection-docblock/src/DocBlockFactoryInterface.php
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
declare (strict_types=1);
|
||||
namespace WP_Ultimo\Dependencies\phpDocumentor\Reflection;
|
||||
|
||||
use WP_Ultimo\Dependencies\phpDocumentor\Reflection\DocBlock\Tag;
|
||||
// phpcs:ignore SlevomatCodingStandard.Classes.SuperfluousInterfaceNaming.SuperfluousSuffix
|
||||
interface DocBlockFactoryInterface
|
||||
{
|
||||
/**
|
||||
* Factory method for easy instantiation.
|
||||
*
|
||||
* @param array<string, class-string<Tag>> $additionalTags
|
||||
*/
|
||||
public static function createInstance(array $additionalTags = []) : DocBlockFactory;
|
||||
/**
|
||||
* @param string|object $docblock
|
||||
*/
|
||||
public function create($docblock, ?Types\Context $context = null, ?Location $location = null) : DocBlock;
|
||||
}
|
Reference in New Issue
Block a user