Skip to content

Commit

Permalink
Merge pull request #500 from Ocramius/dependabot/composer/vimeo/psalm…
Browse files Browse the repository at this point in the history
…-3.5.1

Update vimeo/psalm requirement from 3.4.11 to 3.5.1
  • Loading branch information
Ocramius committed Sep 14, 2019
2 parents 5e254e2 + 6236756 commit 53620c6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"phpbench/phpbench": "^0.16.9",
"infection/infection": "^0.13.6",
"symfony/console": "^4.3.4",
"vimeo/psalm": "3.4.11"
"vimeo/psalm": "3.5.1"
},
"suggest": {
"ocramius/generated-hydrator": "To have very fast object to array to object conversion for ghost objects",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ public function testWillInterceptAccessToPropertiesViaFriendClassAccess(

$proxy->setMethodPrefixInterceptor(
'__get',
static function ($proxy, $instance, $method, $params, & $returnEarly) use ($listener) : void {
static function (object $proxy, object $instance, string $method, array $params, bool & $returnEarly) use ($listener) : void {
$listener->__invoke($proxy, $instance, $method, $params, $returnEarly);
}
);
Expand Down Expand Up @@ -543,7 +543,7 @@ public function testWillInterceptAccessToPropertiesViaFriendClassAccessEvenIfDeS

$proxy->setMethodPrefixInterceptor(
'__get',
static function ($proxy, $instance, $method, $params, & $returnEarly) use ($listener) : void {
static function (object $proxy, object $instance, string $method, array $params, bool & $returnEarly) use ($listener) : void {
$listener->__invoke($proxy, $instance, $method, $params, $returnEarly);
}
);
Expand Down Expand Up @@ -576,7 +576,7 @@ public function testWillInterceptAccessToPropertiesViaFriendClassAccessEvenIfClo

$proxy->setMethodPrefixInterceptor(
'__get',
static function ($proxy, $instance, $method, $params, & $returnEarly) use ($listener) : void {
static function (object $proxy, object $instance, string $method, array $params, bool & $returnEarly) use ($listener) : void {
$listener->__invoke($proxy, $instance, $method, $params, $returnEarly);
}
);
Expand Down

0 comments on commit 53620c6

Please sign in to comment.