Skip to content

Commit

Permalink
Merge branch '7.0' into 7.1
Browse files Browse the repository at this point in the history
* 7.0:
  fix merge
  fix merge
  fix merge
  • Loading branch information
xabbuh committed May 17, 2024
2 parents 5a9f1f5 + 5e5456a commit 306663f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Tests/Definition/BaseNodeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,17 +41,17 @@ protected function validateType($value): void
{
}

protected function normalizeValue($value)
protected function normalizeValue($value): mixed
{
return null;
}

protected function mergeValues($leftSide, $rightSide)
protected function mergeValues($leftSide, $rightSide): mixed
{
return null;
}

protected function finalizeValue($value)
protected function finalizeValue($value): mixed
{
return null;
}
Expand All @@ -61,7 +61,7 @@ public function hasDefaultValue(): bool
return true;
}

public function getDefaultValue()
public function getDefaultValue(): mixed
{
return null;
}
Expand Down

0 comments on commit 306663f

Please sign in to comment.