Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
10 | public function boot() |
||
11 | { |
||
12 | $this->publishes([ |
||
13 | __DIR__.'/../config/slugmaker.php' => $this->app->configPath().'/slugmaker.php', |
||
14 | ], 'config'); |
||
15 | |||
16 | if (! class_exists('CreateSlugsTable')) { |
||
17 | $timestamp = date('Y_m_d_His', time()); |
||
18 | |||
19 | $this->publishes([ |
||
20 | __DIR__.'/../database/migrations/create_slugs_table.php.stub' => $this->app->databasePath()."/migrations/{$timestamp}_create_slugs_table.php", |
||
21 | ], 'migrations'); |
||
22 | } |
||
41 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths