Imbo\Http\Response\Formatter\JSON::getContentType PHP Method

getContentType() public method

public getContentType ( )
    public function getContentType()
    {
        return 'application/json';
    }

Usage Example

Beispiel #1
0
 /**
  * @covers Imbo\Http\Response\Formatter\JSON::getContentType
  */
 public function testReturnsCurrectContentType()
 {
     $this->assertSame('application/json', $this->formatter->getContentType());
 }