| Conditions | 3 |
| Paths | 4 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 33 | public function boot() |
||
| 34 | { |
||
| 35 | $this->publishes([ |
||
| 36 | __DIR__ . '/config/security-txt.php' => config_path('security-txt.php'), |
||
| 37 | ]); |
||
| 38 | |||
| 39 | if (! $this->app->routesAreCached()) { |
||
| 40 | require __DIR__ . '/routes/security-txt.php'; |
||
| 41 | } |
||
| 42 | |||
| 43 | if (! defined('LARAVEL_SECURITY_TXT_VERSION')) { |
||
| 44 | define('LARAVEL_SECURITY_TXT_VERSION', SecurityTxtHelper::VERSION); |
||
| 45 | } |
||
| 72 |