Mutagenesis\Loader::register PHP Метод

register() публичный Метод

Installs this class loader on the SPL autoload stack.
public register ( )
    public function register()
    {
        spl_autoload_register(array($this, 'loadClass'));
    }

Usage Example

Пример #1
0
 public function tearDown()
 {
     $loader = new Loader();
     $loader->register();
 }