| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | public function boot() |
||
| 14 | { |
||
| 15 | if ($this->app->runningInConsole()) { |
||
| 16 | $this->publishes([ |
||
| 17 | __DIR__.'/../config/config.php' => config_path('tinker-server.php'), |
||
| 18 | ], 'config'); |
||
| 19 | |||
| 20 | // Registering package commands. |
||
| 21 | $this->commands([ |
||
| 22 | TinkerServerCommand::class, |
||
| 23 | ]); |
||
| 24 | } |
||
| 25 | } |
||
| 26 | |||
| 36 |