繫結例項

我們可以通過繫結一個物件的例項來使用 Service Container 作為 Registry,並在我們需要它時將其恢復:

// Create an instance.
$john = new User('John');

// Bind it to the service container.
App::instance('the-user', $john);

// ...somewhere and/or in another class...

// Get back the instance
$john = App::make('the-user');