From: za-creature Date: Sun, 30 Dec 2012 19:46:06 +0000 (+0200) Subject: Update lib/Twig/Autoloader.php X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=15be13c081a5d129b6a1900f39fbffeb2fdf1874;p=web%2Fkonrad%2Ftwig.git Update lib/Twig/Autoloader.php Added the ability to register the autoloader at the top of the stack, useful in some situations. --- diff --git a/lib/Twig/Autoloader.php b/lib/Twig/Autoloader.php index 9bcec43..df552dd 100644 --- a/lib/Twig/Autoloader.php +++ b/lib/Twig/Autoloader.php @@ -19,11 +19,15 @@ class Twig_Autoloader { /** * Registers Twig_Autoloader as an SPL autoloader. + * + * @param boolean $prepend (optional) Whether to add the autoloader to + * the start of the stack. Defaults to false so the autoloader will be + * appended to the stack. */ - public static function register() + public static function register($prepend = false) { ini_set('unserialize_callback_func', 'spl_autoload_call'); - spl_autoload_register(array(new self, 'autoload')); + spl_autoload_register(array(new self, 'autoload'), true, $prepend); } /**