I\'ve been trying to figure out what the difference between app->bind
and app->singleton
are when setting up a service provider in Laravel. I was
Your question is a little confusing and doesn't have all the information for someone to answer, but it's a confusing topic, so don't feel bad. Here's a rundown that may help you better understand, and ask the question you wanted to ask (also, I'm newish to Laravel, so I may be off base with these)
The make
method is used to instantiate objects. When you say App::make('Data')
you're telling Laravel to instantiate an object from the class Data
.
There's a caveat to number 1. If you call make
and have already bound the string Data
to something in the service container, Laravel will return the service instead. This may mean Laravel instantiates a new service object, or it may mean Laravel returns a service singleton
Whether or not Laravel returns a singleton or an instance for a service depends on how the service was bound
The make
method doesn't bind anything
You bind services with the application object's bind
method, defined on the container class with the following method prototype public function bind($abstract, $concrete = null, $shared = false)
See that third $shared
parameter? If that's true your service will return a singleton. If it's false your service will return instances.
The application object's singleton
method is a method for binding services
Re: #7, here's the definition of singleton
#File: vendor/laravel/framework/src/Illuminate/Container/Container.php
public function singleton($abstract, $concrete = null)
{
$this->bind($abstract, $concrete, true);
}
In your examples above you're binding the service Data
into the container. Using a leading case service name is going to cause problems -- data
would be a better choice. If your register
method isn't called for some reason, make
will still instantiate an object with your global class Data
Regarding your Facade -- a Facade is an extra layer of instance/singleton-ness. Here's the method where the facade class uses the string from getFacadeAccessor
to return an object from a static call
#File: vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php
protected static function resolveFacadeInstance($name)
{
if (is_object($name)) return $name;
if (isset(static::$resolvedInstance[$name]))
{
return static::$resolvedInstance[$name];
}
return static::$resolvedInstance[$name] = static::$app[$name];
}
So, a facade uses $app[$name];
to grab a service from the container. This is ArrayAccess
, so if we look at the definition of offsetGet
public function offsetGet($key)
{
return $this->make($key);
}
We see ArrayAccess
wraps a call to make
. This means if you have no bound service, facade access will instantiate an object. If you have the service bound as a singleton/shared service, facade access will return that singleton. If you have the service bound as not a singleton/shared service, facade access will instantiate a new object.
HOWEVER, the Facade itself will store any object it instantiates inside static::$resolvedInstance
, and future calls to the facade will return this same instance. This means Facade access introduces a second singleton implementation. A service bound as a singleton will be stored on the application object, a service accessed via a facade will be stored as a singleton on the Facade
class.