1 | <?php |
||
7 | class IlluminateContainer implements Container |
||
8 | { |
||
9 | /** |
||
10 | * @var \Illuminate\Container\Container |
||
11 | */ |
||
12 | protected $container; |
||
13 | |||
14 | public function __construct(\Illuminate\Container\Container $container) |
||
18 | |||
19 | /** |
||
20 | * Instantiate and return an object based on its class name |
||
21 | * |
||
22 | * @param $class |
||
23 | * @return object |
||
24 | */ |
||
25 | public function make($class) |
||
29 | } |
||
30 |