Merge branch 'develop' of github.com:bskrtich/PHPWord into develop

This commit is contained in:
Ivan Lanin 2014-06-07 17:36:59 +07:00
commit 0489533c5f

View File

@ -30,9 +30,9 @@ class Autoloader
*
* @return void
*/
public static function register()
public static function register($throw = true, $prepend = false)
{
spl_autoload_register(array(new self, 'autoload'));
spl_autoload_register(array(new self, 'autoload'), $throw, $prepend);
}
/**