Skip to content

Commit

Permalink
Merge pull request #244 from leroy-merlin-br/refactor/change-annotati…
Browse files Browse the repository at this point in the history
…ons-in-utils-folder

refactor: added utils changes
  • Loading branch information
JoaoFerrazfs authored Oct 8, 2024
2 parents 310123e + 8c47ed6 commit b53f076
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/Unit/Util/CacheComponentTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ protected function getCacheComponent(): MockInterface
/**
* Skips $seconds of time.
*/
protected function tick($seconds): void
protected function tick(int $seconds): void
{
$this->time += $seconds;
}
Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/Util/ObjectIdUtilsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function __toString(): string
['value' => 123456, 'expectation' => false],
['value' => 'abcdefgh1234567890123456', 'expectation' => false],
['value' => '+07f191e810c19729de860ea', 'expectation' => false],
['value' => 1234567, 'expectation' => false],
['value' => 1_234_567, 'expectation' => false],
['value' => 0.5, 'expectation' => false],
['value' => null, 'expectation' => false],
['value' => true, 'expectation' => false],
Expand Down

0 comments on commit b53f076

Please sign in to comment.