Browscap\Filter\LiteFilter::getType PHP 메소드

getType() 공개 메소드

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

Usage Example

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