annotate vendor/phpdocumentor/reflection-docblock/src/DocBlockFactoryInterface.php @ 14:1fec387a4317

Update Drupal core to 8.5.2 via Composer
author Chris Cannam
date Mon, 23 Apr 2018 09:46:53 +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 }