Skip to content

Commit f4f21cd

Browse files
Corrected code for PHP 7.3, changed parameter to default false
1 parent 98faf30 commit f4f21cd

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/Resources/config/default_settings.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
parameters:
2-
ibexa.graphql.schema.should.extend.ezurl: true
2+
ibexa.graphql.schema.should.extend.ezurl: false
33
ezplatform_graphql.schema.content.field_name.override:
44
id: id_
55
ezplatform_graphql.schema.content.mapping.field_definition_type:

src/Schema/Domain/Content/Mapper/FieldDefinition/UrlFieldDefinitionMapper.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@
1313
class UrlFieldDefinitionMapper extends DecoratingFieldDefinitionMapper implements FieldDefinitionMapper
1414
{
1515
private const FIELD_TYPE_IDENTIFIER = 'ezurl';
16-
private bool $shouldExtendUrlInputType;
16+
17+
/** @var bool */
18+
private $shouldExtendUrlInputType;
1719

1820
public function __construct(
1921
FieldDefinitionMapper $innerMapper,

0 commit comments

Comments
 (0)