Jyxo\Beholder\TestCase\DefaultTest::disableAutoload PHP Method

disableAutoload() protected method

Turns autoloading off.
protected disableAutoload ( )
    protected function disableAutoload()
    {
        $this->autoloadList = spl_autoload_functions();
        foreach ($this->autoloadList as $function) {
            spl_autoload_unregister($function);
        }
    }