| Total Complexity | 4 |
| Total Lines | 41 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class AuthCommand extends Command |
||
| 13 | { |
||
| 14 | use CommandUtils, ConfirmableTrait; |
||
| 15 | |||
| 16 | protected $signature = "airtel-money:auth |
||
| 17 | {--no-write : Don't write credentials to .env file.} |
||
| 18 | {--f|force : Force the operation to run when in production.}"; |
||
| 19 | |||
| 20 | public $description = 'Setup authentication'; |
||
| 21 | |||
| 22 | public function handle(): int |
||
| 55 |