| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php namespace Cornford\Bootstrapper; |
||
| 30 | public function register() |
||
| 31 | { |
||
| 32 | $this->app->singleton('bootstrap', function($app) |
||
| 33 | { |
||
| 34 | return new Bootstrap( |
||
| 35 | $this->app->make('Illuminate\Html\FormBuilder', ['csrfToken' => $app['session.store']->getToken()]), |
||
| 36 | $this->app->make('Illuminate\Html\HtmlBuilder'), |
||
| 37 | $this->app->make('Illuminate\Http\Request') |
||
| 38 | ); |
||
| 39 | }); |
||
| 40 | } |
||
| 41 | |||
| 53 |