| Conditions | 3 |
| Paths | 3 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 55 | protected function publishConfig(): void |
||
| 56 | { |
||
| 57 | if ($this->app->runningInConsole()) { |
||
| 58 | $configPath = __DIR__.'/../../config/authorizenet.php'; |
||
| 59 | |||
| 60 | if (file_exists($configPath)) { |
||
| 61 | $this->publishes([ |
||
| 62 | $configPath => config_path('authorizenet.php'), |
||
| 63 | ], 'authorizenet-config'); |
||
| 64 | } |
||
| 71 |