Skip to content

Commit e302c96

Browse files
vincentchalamonalanpoulain
authored andcommitted
fix: rector
1 parent fa83b4c commit e302c96

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Command/JsonSchemaGenerateCommand.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
namespace ApiPlatform\JsonSchema\Command;
1515

1616
use ApiPlatform\JsonSchema\Schema;
17+
use ApiPlatform\JsonSchema\SchemaFactoryInterface;
1718
use ApiPlatform\Metadata\HttpOperation;
1819
use Symfony\Component\Console\Command\Command;
1920
use Symfony\Component\Console\Exception\InvalidOptionException;
@@ -30,10 +31,10 @@
3031
*/
3132
final class JsonSchemaGenerateCommand extends Command
3233
{
33-
// @noRector
34+
// @noRector \Rector\Php81\Rector\Property\ReadOnlyPropertyRector
3435
private array $formats;
3536

36-
public function __construct(private $schemaFactory, array $formats)
37+
public function __construct(private readonly SchemaFactoryInterface $schemaFactory, array $formats)
3738
{
3839
$this->formats = array_keys($formats);
3940

0 commit comments

Comments
 (0)