Skip to content

Commit 287a079

Browse files
authored
PHP <7.4 compatibility
Typed properties are only allowed since PHP 7.4
1 parent a3f124d commit 287a079

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Command/EnableEncryptionConfigCommand.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,10 @@ final class EnableEncryptionConfigCommand extends AbstractConfigCommand
4141
*/
4242
protected static $defaultName = 'lexik:jwt:enable-encryption';
4343

44-
private ?AlgorithmManagerFactory $algorithmManagerFactory;
44+
/**
45+
* @var ?AlgorithmManagerFactory
46+
*/
47+
private $algorithmManagerFactory;
4548

4649
public function __construct(
4750
?AlgorithmManagerFactory $algorithmManagerFactory = null

0 commit comments

Comments
 (0)