Skip to content

Commit 75dc19d

Browse files
committed
style: various cs fixes
1 parent 72ae5d6 commit 75dc19d

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

SchemaFactory.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ final class SchemaFactory implements SchemaFactoryInterface
4242
public const FORCE_SUBSCHEMA = '_api_subschema_force_readable_link';
4343
public const OPENAPI_DEFINITION_NAME = 'openapi_definition_name';
4444

45-
public function __construct(private readonly TypeFactoryInterface $typeFactory, ResourceMetadataCollectionFactoryInterface $resourceMetadataFactory, private readonly PropertyNameCollectionFactoryInterface $propertyNameCollectionFactory, private readonly PropertyMetadataFactoryInterface $propertyMetadataFactory, private readonly ?NameConverterInterface $nameConverter = null, ResourceClassResolverInterface $resourceClassResolver = null)
45+
public function __construct(private readonly TypeFactoryInterface $typeFactory, ResourceMetadataCollectionFactoryInterface $resourceMetadataFactory, private readonly PropertyNameCollectionFactoryInterface $propertyNameCollectionFactory, private readonly PropertyMetadataFactoryInterface $propertyMetadataFactory, private readonly ?NameConverterInterface $nameConverter = null, ?ResourceClassResolverInterface $resourceClassResolver = null)
4646
{
4747
$this->resourceMetadataFactory = $resourceMetadataFactory;
4848
$this->resourceClassResolver = $resourceClassResolver;
@@ -61,7 +61,7 @@ public function addDistinctFormat(string $format): void
6161
/**
6262
* {@inheritdoc}
6363
*/
64-
public function buildSchema(string $className, string $format = 'json', string $type = Schema::TYPE_OUTPUT, Operation $operation = null, Schema $schema = null, array $serializerContext = null, bool $forceCollection = false): Schema
64+
public function buildSchema(string $className, string $format = 'json', string $type = Schema::TYPE_OUTPUT, ?Operation $operation = null, ?Schema $schema = null, ?array $serializerContext = null, bool $forceCollection = false): Schema
6565
{
6666
$schema = $schema ? clone $schema : new Schema();
6767

@@ -226,7 +226,7 @@ private function buildPropertySchema(Schema $schema, string $definitionName, str
226226
$schema->getDefinitions()[$definitionName]['properties'][$normalizedPropertyName] = $propertySchema;
227227
}
228228

229-
private function buildDefinitionName(string $className, string $format = 'json', string $inputOrOutputClass = null, Operation $operation = null, array $serializerContext = null): string
229+
private function buildDefinitionName(string $className, string $format = 'json', ?string $inputOrOutputClass = null, ?Operation $operation = null, ?array $serializerContext = null): string
230230
{
231231
if ($operation) {
232232
$prefix = $operation->getShortName();
@@ -262,7 +262,7 @@ private function encodeDefinitionName(string $name): string
262262
return preg_replace('/[^a-zA-Z0-9.\-_]/', '.', $name);
263263
}
264264

265-
private function getMetadata(string $className, string $type = Schema::TYPE_OUTPUT, Operation $operation = null, array $serializerContext = null): ?array
265+
private function getMetadata(string $className, string $type = Schema::TYPE_OUTPUT, ?Operation $operation = null, ?array $serializerContext = null): ?array
266266
{
267267
if (!$this->isResourceClass($className)) {
268268
return [
@@ -351,7 +351,7 @@ private function getValidationGroups(Operation $operation): array
351351
/**
352352
* Gets the options for the property name collection / property metadata factories.
353353
*/
354-
private function getFactoryOptions(array $serializerContext, array $validationGroups, HttpOperation $operation = null): array
354+
private function getFactoryOptions(array $serializerContext, array $validationGroups, ?HttpOperation $operation = null): array
355355
{
356356
$options = [
357357
/* @see https://github.com/symfony/symfony/blob/v5.1.0/src/Symfony/Component/PropertyInfo/Extractor/ReflectionExtractor.php */

SchemaFactoryInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ interface SchemaFactoryInterface
2525
/**
2626
* Builds the JSON Schema document corresponding to the given PHP class.
2727
*/
28-
public function buildSchema(string $className, string $format = 'json', string $type = Schema::TYPE_OUTPUT, Operation $operation = null, Schema $schema = null, array $serializerContext = null, bool $forceCollection = false): Schema;
28+
public function buildSchema(string $className, string $format = 'json', string $type = Schema::TYPE_OUTPUT, ?Operation $operation = null, ?Schema $schema = null, ?array $serializerContext = null, bool $forceCollection = false): Schema;
2929
}

Tests/Fixtures/ApiResource/Dummy.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -147,12 +147,12 @@ public function getFoo(): ?array
147147
return $this->foo;
148148
}
149149

150-
public function setFoo(array $foo = null): void
150+
public function setFoo(?array $foo = null): void
151151
{
152152
$this->foo = $foo;
153153
}
154154

155-
public function setDummyDate(\DateTime $dummyDate = null): void
155+
public function setDummyDate(?\DateTime $dummyDate = null): void
156156
{
157157
$this->dummyDate = $dummyDate;
158158
}

TypeFactory.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ final class TypeFactory implements TypeFactoryInterface
3131

3232
private ?SchemaFactoryInterface $schemaFactory = null;
3333

34-
public function __construct(ResourceClassResolverInterface $resourceClassResolver = null)
34+
public function __construct(?ResourceClassResolverInterface $resourceClassResolver = null)
3535
{
3636
$this->resourceClassResolver = $resourceClassResolver;
3737
}
@@ -44,7 +44,7 @@ public function setSchemaFactory(SchemaFactoryInterface $schemaFactory): void
4444
/**
4545
* {@inheritdoc}
4646
*/
47-
public function getType(Type $type, string $format = 'json', bool $readableLink = null, array $serializerContext = null, Schema $schema = null): array
47+
public function getType(Type $type, string $format = 'json', ?bool $readableLink = null, ?array $serializerContext = null, ?Schema $schema = null): array
4848
{
4949
if ($type->isCollection()) {
5050
$keyType = $type->getCollectionKeyTypes()[0] ?? null;
@@ -66,7 +66,7 @@ public function getType(Type $type, string $format = 'json', bool $readableLink
6666
return $this->addNullabilityToTypeDefinition($this->makeBasicType($type, $format, $readableLink, $serializerContext, $schema), $type, $schema);
6767
}
6868

69-
private function makeBasicType(Type $type, string $format = 'json', bool $readableLink = null, array $serializerContext = null, Schema $schema = null): array
69+
private function makeBasicType(Type $type, string $format = 'json', ?bool $readableLink = null, ?array $serializerContext = null, ?Schema $schema = null): array
7070
{
7171
return match ($type->getBuiltinType()) {
7272
Type::BUILTIN_TYPE_INT => ['type' => 'integer'],

TypeFactoryInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ interface TypeFactoryInterface
2525
/**
2626
* Gets the JSON Schema document which specifies the data type corresponding to the given PHP type, and recursively adds needed new schema to the current schema if provided.
2727
*/
28-
public function getType(Type $type, string $format = 'json', bool $readableLink = null, array $serializerContext = null, Schema $schema = null): array;
28+
public function getType(Type $type, string $format = 'json', ?bool $readableLink = null, ?array $serializerContext = null, ?Schema $schema = null): array;
2929
}

0 commit comments

Comments
 (0)