Fabien Potencier
Contributed by Fabien Potencier in #8820

Instead of relying on HTTP status code as integer in your code, which might look like magic values to some, it might be more readable to use the new constants provided by the Symfony Response class in 2.4:

1
2
3
use Symfony\Component\HttpFoundation\Response;

$this->assertEquals(Response::HTTP_OK, $response->getStatusCode());

See the Response class for a full list of supported constants.

Published in #Living on the edge