Browscap\Filter\FullFilter::getType PHP Method

getType() public method

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

Usage Example

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