我想在https://github.com/filp/whoops导入whoops调试库,代码大致如下
namespace Whoops;
use InvalidArgumentException;
use Whoops\Exception\ErrorException;
use Whoops\Exception\Inspector;
use Whoops\Handler\CallbackHandler;
use Whoops\Handler\Handler;
use Whoops\Handler\HandlerInterface;
use Whoops\Util\Misc;
use Whoops\Util\SystemFacade;
final class Run implements RunInterface
{//省略}
如果我通过import('MyClass',APP_PATH.'Whoops','.php');导入Run类文件,那么RunInterface这个文件需要再import,那么有无什么方法不修改文件名,正常导入吗