added resolving event.

This commit is contained in:
Taylor Otwell 2012-06-13 10:25:14 -05:00
parent 14868a5fd5
commit 0a24189b0e

View File

@ -129,6 +129,8 @@ class IoC {
static::$singletons[$type] = $object;
}
Event::fire('laravel.resolving', array($type, $object));
return $object;
}