| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 31 | public function register() |
||
| 32 | { |
||
| 33 | $configPath = __DIR__ . '/../config/' . $this->configName . '.php'; |
||
| 34 | |||
| 35 | $this->mergeConfigFrom($configPath, $this->configName); |
||
| 36 | |||
| 37 | $this->app->bind(FreeMobileSms::class, FreeMobileSms::class); |
||
| 38 | |||
| 39 | $this->app->singleton('freemobile', function($app) |
||
|
|
|||
| 40 | { |
||
| 41 | return new FreeMobileSms(); |
||
| 42 | }); |
||
| 43 | |||
| 44 | $this->app->alias('freemobile', FreeMobileSms::class); |
||
| 45 | } |
||
| 46 | |||
| 63 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.