Skip to content

Commit

Permalink
fix merge
Browse files Browse the repository at this point in the history
  • Loading branch information
xabbuh committed May 17, 2024
1 parent 6c9c507 commit c6e7e02
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 c6e7e02

Please sign in to comment.