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

getContentType() public method

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

Usage Example

Exemplo n.º 1
0
 /**
  * @covers Imbo\Http\Response\Formatter\XML::getContentType
  */
 public function testReturnsCurrectContentType()
 {
     $this->assertSame('application/xml', $this->formatter->getContentType());
 }