9 lines
112 B
PHP
9 lines
112 B
PHP
|
<?php
|
||
|
|
||
|
namespace NoccyLabs\Hotfix\Hotfix\Loader;
|
||
|
|
||
|
interface LoaderInterface
|
||
|
{
|
||
|
public function load($fix);
|
||
|
}
|