Update Composer, update everything
This commit is contained in:
parent
ea3e94409f
commit
dda5c284b6
19527 changed files with 1135420 additions and 351004 deletions
18
vendor/doctrine/reflection/lib/Doctrine/Common/Reflection/ClassFinderInterface.php
vendored
Normal file
18
vendor/doctrine/reflection/lib/Doctrine/Common/Reflection/ClassFinderInterface.php
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
<?php
|
||||
|
||||
namespace Doctrine\Common\Reflection;
|
||||
|
||||
/**
|
||||
* Finds a class in a PSR-0 structure.
|
||||
*/
|
||||
interface ClassFinderInterface
|
||||
{
|
||||
/**
|
||||
* Finds a class.
|
||||
*
|
||||
* @param string $class The name of the class.
|
||||
*
|
||||
* @return string|null The name of the class or NULL if not found.
|
||||
*/
|
||||
public function findFile($class);
|
||||
}
|
Reference in a new issue