@@ -42,7 +42,7 @@ final class SchemaFactory implements SchemaFactoryInterface
42
42
public const FORCE_SUBSCHEMA = '_api_subschema_force_readable_link ' ;
43
43
public const OPENAPI_DEFINITION_NAME = 'openapi_definition_name ' ;
44
44
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 )
46
46
{
47
47
$ this ->resourceMetadataFactory = $ resourceMetadataFactory ;
48
48
$ this ->resourceClassResolver = $ resourceClassResolver ;
@@ -61,7 +61,7 @@ public function addDistinctFormat(string $format): void
61
61
/**
62
62
* {@inheritdoc}
63
63
*/
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
65
65
{
66
66
$ schema = $ schema ? clone $ schema : new Schema ();
67
67
@@ -226,7 +226,7 @@ private function buildPropertySchema(Schema $schema, string $definitionName, str
226
226
$ schema ->getDefinitions ()[$ definitionName ]['properties ' ][$ normalizedPropertyName ] = $ propertySchema ;
227
227
}
228
228
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
230
230
{
231
231
if ($ operation ) {
232
232
$ prefix = $ operation ->getShortName ();
@@ -262,7 +262,7 @@ private function encodeDefinitionName(string $name): string
262
262
return preg_replace ('/[^a-zA-Z0-9.\-_]/ ' , '. ' , $ name );
263
263
}
264
264
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
266
266
{
267
267
if (!$ this ->isResourceClass ($ className )) {
268
268
return [
@@ -351,7 +351,7 @@ private function getValidationGroups(Operation $operation): array
351
351
/**
352
352
* Gets the options for the property name collection / property metadata factories.
353
353
*/
354
- private function getFactoryOptions (array $ serializerContext , array $ validationGroups , HttpOperation $ operation = null ): array
354
+ private function getFactoryOptions (array $ serializerContext , array $ validationGroups , ? HttpOperation $ operation = null ): array
355
355
{
356
356
$ options = [
357
357
/* @see https://github.com/symfony/symfony/blob/v5.1.0/src/Symfony/Component/PropertyInfo/Extractor/ReflectionExtractor.php */
0 commit comments