Move view composer loading back to application directory.

This commit is contained in:
Taylor Otwell 2011-08-03 08:47:09 -05:00
parent 57e6532723
commit 927c522e67
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ public static function make($view, $data = array())
{ {
if (is_null(static::$composers)) if (is_null(static::$composers))
{ {
static::$composers = require VIEW_PATH.'composers'.EXT; static::$composers = require APP_PATH.'composers'.EXT;
} }
$instance = new static($view, $data); $instance = new static($view, $data);