Skip to content

Commit

Permalink
Corrected code for PHP 7.3, changed parameter to default false
Browse files Browse the repository at this point in the history
  • Loading branch information
mateuszdebinski committed Jul 16, 2024
1 parent 98faf30 commit f4f21cd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Resources/config/default_settings.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
parameters:
ibexa.graphql.schema.should.extend.ezurl: true
ibexa.graphql.schema.should.extend.ezurl: false
ezplatform_graphql.schema.content.field_name.override:
id: id_
ezplatform_graphql.schema.content.mapping.field_definition_type:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
class UrlFieldDefinitionMapper extends DecoratingFieldDefinitionMapper implements FieldDefinitionMapper
{
private const FIELD_TYPE_IDENTIFIER = 'ezurl';
private bool $shouldExtendUrlInputType;

/** @var bool */
private $shouldExtendUrlInputType;

public function __construct(
FieldDefinitionMapper $innerMapper,
Expand Down

0 comments on commit f4f21cd

Please sign in to comment.