8 lines
137 B
PHP
8 lines
137 B
PHP
<?php
|
|
|
|
namespace Metadata\Driver;
|
|
|
|
interface FileLocatorInterface
|
|
{
|
|
function findFileForClass(\ReflectionClass $class, $extension);
|
|
} |