| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 47 | public function register() |
||
| 48 | { |
||
| 49 | // Automatically apply the package configuration |
||
| 50 | $this->mergeConfigFrom(__DIR__.'/../config/historiable.php', 'historiable'); |
||
| 51 | |||
| 52 | // Register the main class to use with the facade |
||
| 53 | $this->app->bind('historiable', function () { |
||
| 54 | return new History(); |
||
| 55 | }); |
||
| 56 | } |
||
| 57 | } |
||
| 58 |