Merge remote-tracking branch 'origin/master' into develop
This commit is contained in:
commit
b549e30c7c
2
artisan
2
artisan
|
@ -3,7 +3,7 @@
|
||||||
* Laravel - A PHP Framework For Web Artisans
|
* Laravel - A PHP Framework For Web Artisans
|
||||||
*
|
*
|
||||||
* @package Laravel
|
* @package Laravel
|
||||||
* @version 3.0.3
|
* @version 3.0.4
|
||||||
* @author Taylor Otwell <taylorotwell@gmail.com>
|
* @author Taylor Otwell <taylorotwell@gmail.com>
|
||||||
* @link http://laravel.com
|
* @link http://laravel.com
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -130,7 +130,7 @@ public static function resolve($name, $parameters = array())
|
||||||
// If the resolver is registering as a singleton resolver, we will cache
|
// If the resolver is registering as a singleton resolver, we will cache
|
||||||
// the instance of the object in the container so we can resolve it next
|
// the instance of the object in the container so we can resolve it next
|
||||||
// time without having to instantiate a brand new instance.
|
// time without having to instantiate a brand new instance.
|
||||||
if (isset(static::$registry[$name]['singleton']))
|
if (static::$registry[$name]['singleton'])
|
||||||
{
|
{
|
||||||
return static::$singletons[$name] = $object;
|
return static::$singletons[$name] = $object;
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
* Laravel - A PHP Framework For Web Artisans
|
* Laravel - A PHP Framework For Web Artisans
|
||||||
*
|
*
|
||||||
* @package Laravel
|
* @package Laravel
|
||||||
* @version 3.0.3
|
* @version 3.0.4
|
||||||
* @author Taylor Otwell <taylorotwell@gmail.com>
|
* @author Taylor Otwell <taylorotwell@gmail.com>
|
||||||
* @link http://laravel.com
|
* @link http://laravel.com
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
* Laravel - A PHP Framework For Web Artisans
|
* Laravel - A PHP Framework For Web Artisans
|
||||||
*
|
*
|
||||||
* @package Laravel
|
* @package Laravel
|
||||||
* @version 3.0.3
|
* @version 3.0.4
|
||||||
* @author Taylor Otwell <taylorotwell@gmail.com>
|
* @author Taylor Otwell <taylorotwell@gmail.com>
|
||||||
* @link http://laravel.com
|
* @link http://laravel.com
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue