| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | public function register(): void |
||
| 16 | { |
||
| 17 | // Merge package configuration |
||
| 18 | $this->mergeConfigFrom( |
||
| 19 | __DIR__ . '/../../config/super_cache_invalidate.php', |
||
| 20 | 'super_cache_invalidate' |
||
| 21 | ); |
||
| 22 | |||
| 23 | // Register the helper as a singleton |
||
| 24 | $this->app->singleton('supercache.invalidation', function ($app) { |
||
|
|
|||
| 25 | return new SuperCacheInvalidationHelper(); |
||
| 26 | }); |
||
| 51 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.