Skip to content

Commit 2670220

Browse files
Bump vimeo/psalm from 4.7.2 to 4.7.3 in /tools (#239)
* Bump vimeo/psalm from 4.7.2 to 4.7.3 in /tools Bumps [vimeo/psalm](https://github.com/vimeo/psalm) from 4.7.2 to 4.7.3. - [Release notes](https://github.com/vimeo/psalm/releases) - [Commits](vimeo/psalm@4.7.2...4.7.3) Signed-off-by: dependabot[bot] <[email protected]> * Fixed PHPMatcherConstraint\matches signature according to parent class (#241) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Alessio <[email protected]>
1 parent 5b9626f commit 2670220

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

src/PHPUnit/PHPMatcherConstraint.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ protected function failureDescription($other) : string
5252
. "\nBacktrace:\n" . $this->matcher->backtrace();
5353
}
5454

55-
protected function matches($value) : bool
55+
protected function matches($other) : bool
5656
{
57-
return $this->matcher->match($this->lastValue = $value, $this->pattern);
57+
return $this->matcher->match($this->lastValue = $other, $this->pattern);
5858
}
5959

6060
/**

tools/composer.lock

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)