Moved the extensions compiler to first.

This commit is contained in:
Loic Sharma 2012-05-05 08:41:22 -05:00
parent 515f5f4009
commit d866244225
1 changed files with 1 additions and 1 deletions

View File

@ -8,6 +8,7 @@ class Blade {
* @var array * @var array
*/ */
protected static $compilers = array( protected static $compilers = array(
'extensions',
'layouts', 'layouts',
'comments', 'comments',
'echos', 'echos',
@ -26,7 +27,6 @@ class Blade {
'yield_sections', 'yield_sections',
'section_start', 'section_start',
'section_end', 'section_end',
'extensions',
); );
/** /**