| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 51 | public function handleConfigs() |
||
| 52 | { |
||
| 53 | $config_file = __DIR__.'/../../config/moip.php'; |
||
| 54 | |||
| 55 | if ($this->isLumen()) { |
||
| 56 | $this->app->configure('moip'); |
||
|
|
|||
| 57 | } else { |
||
| 58 | $this->publishes([$config_file => config_path('moip.php')]); |
||
| 59 | } |
||
| 60 | |||
| 61 | $this->mergeConfigFrom($config_file, 'moip'); |
||
| 62 | } |
||
| 63 | |||
| 74 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.