interface ProjectFactory
Interface for project factories. A project factory shall convert a set of files into an object implementing the Project interface.
Hierarchy
- interface \phpDocumentor\Reflection\ProjectFactory
Expanded class hierarchy of ProjectFactory
All classes that implement ProjectFactory
File
-
vendor/
phpdocumentor/ reflection-common/ src/ ProjectFactory.php, line 20
Namespace
phpDocumentor\ReflectionView source
interface ProjectFactory {
/**
* Creates a project from the set of files.
*
* @param File[] $files
*/
public function create(string $name, array $files) : Project;
}
Members
Title Sort descending | Modifiers | Object type | Summary |
---|---|---|---|
ProjectFactory::create | public | function | Creates a project from the set of files. |