Browscap\Formatter\AspFormatter::getType PHP Method

getType() public method

returns the Type of the formatter
public getType ( ) : string
return string
    public function getType()
    {
        return 'asp';
    }

Usage Example

Esempio n. 1
0
 /**
  * tests getter for the formatter type
  *
  * @group formatter
  * @group sourcetest
  */
 public function testGetType()
 {
     self::assertSame('asp', $this->object->getType());
 }