diff --git a/laravel/cli/tasks/test/phpunit.php b/laravel/cli/tasks/test/phpunit.php index 4db1ea94..67644838 100644 --- a/laravel/cli/tasks/test/phpunit.php +++ b/laravel/cli/tasks/test/phpunit.php @@ -42,4 +42,4 @@ require path('sys').'core.php'; // -------------------------------------------------------------- // Start the default bundle. // -------------------------------------------------------------- -Bundle::start(DEFAULT_BUNDLE); \ No newline at end of file +Laravel\Bundle::start(DEFAULT_BUNDLE); \ No newline at end of file diff --git a/laravel/event.php b/laravel/event.php index 5657422c..7fdc1368 100644 --- a/laravel/event.php +++ b/laravel/event.php @@ -62,7 +62,7 @@ class Event { */ public static function clear($event) { - static::$events[$event] = array(); + unset(static::$events[$event]); } /**