| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 34 | public function testSetResponse(): void |
||
| 35 | { |
||
| 36 | /** @var ObjectProphecy&Response $reponse */ |
||
|
|
|||
| 37 | $reponse = $this->prophesize(Response::class); |
||
| 38 | |||
| 39 | $event = new AuthFailedEvent(); |
||
| 40 | $event->setResponse($reponse->reveal()); |
||
| 41 | |||
| 42 | $this->assertSame($reponse->reveal(), $event->getResponse()); |
||
| 43 | } |
||
| 44 | } |
||
| 45 |
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.