Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
28 | public function handle(Container $app, Sandbox $sandbox) |
||
29 | { |
||
30 | $view = $app->make('view'); |
||
31 | |||
32 | $closure = function () use ($app) { |
||
33 | $this->container = $app; |
||
34 | $this->shared['app'] = $app; |
||
35 | }; |
||
36 | |||
37 | $resetView = $closure->bindTo($view, $view); |
||
38 | $resetView(); |
||
39 | |||
40 | return $app; |
||
41 | } |
||
43 |