Total Complexity | 3 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
9 | class GenerateJwtSecretCommand extends Command |
||
10 | { |
||
11 | protected $name = 'koel:generate-jwt-secret'; |
||
12 | protected $description = 'Set the JWTAuth secret key used to sign the tokens'; |
||
13 | private $dotenvEditor; |
||
14 | |||
15 | 132 | public function __construct(DotenvEditor $dotenvEditor) |
|
20 | 132 | } |
|
21 | |||
22 | 2 | public function handle(): void |
|
34 |