diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/vendor/phpdocumentor/reflection-docblock/src/DocBlockFactoryInterface.php	Fri Feb 23 15:52:07 2018 +0000
@@ -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);
+}