语法
1. [Application类](https://github.com/laravel/framework/blob/4.2/src/Illuminate/Foundation/Application.php#L23)继承了[Container](https... 显示全部 »
1. [Application类](https://github.com/laravel/framework/blob/4.2/src/Illuminate/Foundation/Application.php#L23)继承了[Container](https://github.com/laravel/framework/blob/4.2/src/Illuminate/Container/Container.php#L8) 类
2. Container类实现了ArrayAccess, 所以Container的实例是支持数组式访问的: $object['key'];
3. 数组式访问在Container里的实现:https://github.com/laravel/framework/blob/4.2/src/Illuminate/Container/Container.php#L814 814行到末尾
4. PHP的数组式访问接口:http://php.net/manual/zh/class.arrayaccess.php
2. Container类实现了ArrayAccess, 所以Container的实例是支持数组式访问的: $object['key'];
3. 数组式访问在Container里的实现:https://github.com/laravel/framework/blob/4.2/src/Illuminate/Container/Container.php#L814 814行到末尾
4. PHP的数组式访问接口:http://php.net/manual/zh/class.arrayaccess.php