comparison vendor/phpdocumentor/reflection-docblock/src/DocBlockFactoryInterface.php @ 12:7a779792577d

Update Drupal core to v8.4.5 (via Composer)
author Chris Cannam
date Fri, 23 Feb 2018 15:52:07 +0000
parents
children
comparison
equal deleted inserted replaced
11:bfffd8d7479a 12:7a779792577d
1 <?php
2 namespace phpDocumentor\Reflection;
3
4 interface DocBlockFactoryInterface
5 {
6 /**
7 * Factory method for easy instantiation.
8 *
9 * @param string[] $additionalTags
10 *
11 * @return DocBlockFactory
12 */
13 public static function createInstance(array $additionalTags = []);
14
15 /**
16 * @param string $docblock
17 * @param Types\Context $context
18 * @param Location $location
19 *
20 * @return DocBlock
21 */
22 public function create($docblock, Types\Context $context = null, Location $location = null);
23 }