Mercurial > hg > isophonics-drupal-site
comparison vendor/phpdocumentor/reflection-common/src/ProjectFactory.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 /** | |
3 * phpDocumentor | |
4 * | |
5 * PHP Version 5.5 | |
6 * | |
7 * @copyright 2010-2015 Mike van Riel / Naenius (http://www.naenius.com) | |
8 * @license http://www.opensource.org/licenses/mit-license.php MIT | |
9 * @link http://phpdoc.org | |
10 */ | |
11 namespace phpDocumentor\Reflection; | |
12 | |
13 /** | |
14 * Interface for project factories. A project factory shall convert a set of files | |
15 * into an object implementing the Project interface. | |
16 */ | |
17 interface ProjectFactory | |
18 { | |
19 /** | |
20 * Creates a project from the set of files. | |
21 * | |
22 * @param string $name | |
23 * @param File[] $files | |
24 * @return Project | |
25 */ | |
26 public function create($name, array $files); | |
27 } |