Skip to content

Commit

Permalink
Merge branch '6.0' into 6.1
Browse files Browse the repository at this point in the history
* 6.0:
  Update ComposerPlugin.php
  [Notifier] [OvhCloud] handle invalid receiver
  [Cache] fix collecting cache stats when nesting computations
  [VarDumper] Fix JS to expand / collapse
  [Validator] Fix Email validator logic
  Fix user_identifier support after username has been deprecated in favor of it.
  [Tests] Remove `$this` occurrences in future static data providers
  [PropertyInfo] Fixes constructor extractor for mixed type
  use method_exists() instead of catching reflection exceptions
  • Loading branch information
nicolas-grekas committed Jan 20, 2023
2 parents ea303bb + 4251d73 commit d53441c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/EventListener/ErrorListenerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ public function controllerProvider()
}];

yield [function ($exception) {
$this->assertInstanceOf(FlattenException::class, $exception);
static::assertInstanceOf(FlattenException::class, $exception);

return new Response('OK: '.$exception->getMessage());
}];
Expand Down

0 comments on commit d53441c

Please sign in to comment.