Skip to content

Commit

Permalink
no-issue - CI - test
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonMellerin committed Nov 24, 2023
1 parent b274696 commit 5a11668
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/Mock/TestingExecutionContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,22 +78,22 @@ public function getObject(): ?object
/**
* {@inheritdoc}
*/
public function setNode(mixed $value, ?object $object, MetadataInterface $metadata = null, string $propertyPath) {}
public function setNode(mixed $value, ?object $object, MetadataInterface $metadata = null, string $propertyPath): void {}

/**
* {@inheritdoc}
*/
public function setGroup(?string $group) {}
public function setGroup(?string $group): void {}

/**
* {@inheritdoc}
*/
public function setConstraint(Constraint $constraint) {}
public function setConstraint(Constraint $constraint): void {}

/**
* {@inheritdoc}
*/
public function markGroupAsValidated(string $cacheKey, string $groupHash) {}
public function markGroupAsValidated(string $cacheKey, string $groupHash): void {}

/**
* {@inheritdoc}
Expand All @@ -106,7 +106,7 @@ public function isGroupValidated(string $cacheKey, string $groupHash): bool
/**
* {@inheritdoc}
*/
public function markConstraintAsValidated(string $cacheKey, string $constraintHash) {}
public function markConstraintAsValidated(string $cacheKey, string $constraintHash): void {}

/**
* {@inheritdoc}
Expand Down

0 comments on commit 5a11668

Please sign in to comment.