Browscap\Filter\LiteFilter::getType PHP Method

getType() public method

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

Usage Example

Example #1
0
 /**
  * tests getter for the filter type
  *
  * @group filter
  * @group sourcetest
  */
 public function testGetType()
 {
     self::assertSame('LITE', $this->object->getType());
 }