We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa83b4c commit e302c96Copy full SHA for e302c96
Command/JsonSchemaGenerateCommand.php
@@ -14,6 +14,7 @@
14
namespace ApiPlatform\JsonSchema\Command;
15
16
use ApiPlatform\JsonSchema\Schema;
17
+use ApiPlatform\JsonSchema\SchemaFactoryInterface;
18
use ApiPlatform\Metadata\HttpOperation;
19
use Symfony\Component\Console\Command\Command;
20
use Symfony\Component\Console\Exception\InvalidOptionException;
@@ -30,10 +31,10 @@
30
31
*/
32
final class JsonSchemaGenerateCommand extends Command
33
{
- // @noRector
34
+ // @noRector \Rector\Php81\Rector\Property\ReadOnlyPropertyRector
35
private array $formats;
36
- public function __construct(private $schemaFactory, array $formats)
37
+ public function __construct(private readonly SchemaFactoryInterface $schemaFactory, array $formats)
38
39
$this->formats = array_keys($formats);
40
0 commit comments