14 lines
200 B
PHP
14 lines
200 B
PHP
<?php
|
|
|
|
|
|
namespace Drupal\xautoload\Discovery;
|
|
|
|
interface ClassMapGeneratorInterface {
|
|
|
|
/**
|
|
* @param string[] $paths
|
|
*
|
|
* @return string[]
|
|
*/
|
|
function wildcardPathsToClassmap($paths);
|
|
}
|