New in Symfony 2.4: Using Constants for HTTP Status Code
October 20, 2013 • Published by Fabien Potencier
Warning: This post is about an unsupported Symfony version. Some of this information may be out of date. Read the most recent Symfony Docs.
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.
Help the Symfony project!
As with any Open-Source project, contributing code or documentation is the most common way to help, but we also have a wide range of sponsoring opportunities.
Comments are closed.
To ensure that comments stay relevant, they are closed for old posts.