绑定实例
我们可以通过绑定一个对象的实例来使用 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');