Mercurial > hg > isophonics-drupal-site
annotate vendor/phpdocumentor/reflection-docblock/src/DocBlockFactoryInterface.php @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | 7a779792577d |
children |
rev | line source |
---|---|
Chris@12 | 1 <?php |
Chris@12 | 2 namespace phpDocumentor\Reflection; |
Chris@12 | 3 |
Chris@12 | 4 interface DocBlockFactoryInterface |
Chris@12 | 5 { |
Chris@12 | 6 /** |
Chris@12 | 7 * Factory method for easy instantiation. |
Chris@12 | 8 * |
Chris@12 | 9 * @param string[] $additionalTags |
Chris@12 | 10 * |
Chris@12 | 11 * @return DocBlockFactory |
Chris@12 | 12 */ |
Chris@12 | 13 public static function createInstance(array $additionalTags = []); |
Chris@12 | 14 |
Chris@12 | 15 /** |
Chris@12 | 16 * @param string $docblock |
Chris@12 | 17 * @param Types\Context $context |
Chris@12 | 18 * @param Location $location |
Chris@12 | 19 * |
Chris@12 | 20 * @return DocBlock |
Chris@12 | 21 */ |
Chris@12 | 22 public function create($docblock, Types\Context $context = null, Location $location = null); |
Chris@12 | 23 } |