Commit 6535fca3 authored by Taylor Otwell's avatar Taylor Otwell

fixing bug in event class.

Signed-off-by: 's avatarTaylor Otwell <taylorotwell@gmail.com>
parent cb8dbddc
...@@ -42,4 +42,4 @@ require path('sys').'core.php'; ...@@ -42,4 +42,4 @@ require path('sys').'core.php';
// -------------------------------------------------------------- // --------------------------------------------------------------
// Start the default bundle. // Start the default bundle.
// -------------------------------------------------------------- // --------------------------------------------------------------
Bundle::start(DEFAULT_BUNDLE); Laravel\Bundle::start(DEFAULT_BUNDLE);
\ No newline at end of file \ No newline at end of file
...@@ -62,7 +62,7 @@ class Event { ...@@ -62,7 +62,7 @@ class Event {
*/ */
public static function clear($event) public static function clear($event)
{ {
static::$events[$event] = array(); unset(static::$events[$event]);
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment