Mutagenesis\Loader::register PHP Method

register() public method

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

Usage Example

Example #1
0
 public function tearDown()
 {
     $loader = new Loader();
     $loader->register();
 }