public function JsonResponseTest::testStaticCreateAddsContentTypeHeader in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/http-foundation/Tests/JsonResponseTest.php \Symfony\Component\HttpFoundation\Tests\JsonResponseTest::testStaticCreateAddsContentTypeHeader()
File
- vendor/
symfony/ http-foundation/ Tests/ JsonResponseTest.php, line 133
Class
Namespace
Symfony\Component\HttpFoundation\TestsCode
public function testStaticCreateAddsContentTypeHeader() {
$response = JsonResponse::create();
$this
->assertSame('application/json', $response->headers
->get('Content-Type'));
}