nginxsonarrradarrplexorganizrdashboardapplication-dashboardmuximuxlandingpagestartpagelandinghtpcserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmark
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
545 B
23 lines
545 B
<?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);
|
|
}
|
|
|