| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php namespace Maqe\Qwatcher; |
||
| 38 | public function register() |
||
| 39 | { |
||
| 40 | /** |
||
| 41 | * publish migrations |
||
| 42 | */ |
||
| 43 | $this->publishes([__DIR__ . '/../database/migrations' => database_path('migrations')], 'migrations'); |
||
| 44 | |||
| 45 | /** |
||
| 46 | * Register Facade |
||
| 47 | */ |
||
| 48 | $this->app->bind('Qwatch', function () { |
||
| 49 | return (new Qwatcher); |
||
| 50 | }); |
||
| 51 | } |
||
| 52 | |||
| 63 |