namespace TypistTech\Imposter;
interface ImposterInterface
* Get all valid (exist) autoload paths.
public function getAutoloads(): array;
* Get all invalid (not exist) autoload paths.
public function getInvalidAutoloads(): array;
* Transform all autoload files.
* Transform a file or directory recursively.
* @param string $target Path to the target file or directory.
public function transform(string $target);