Fixed twitter link

This commit is contained in:
Glitch (t404null)
2022-06-25 11:33:59 +00:00
parent 654925cdbf
commit 25e7853992
1488 changed files with 124494 additions and 20 deletions

View File

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