Browscap\Formatter\CsvFormatter::getType PHP Метод

getType() публичный Метод

returns the Type of the formatter
public getType ( ) : string
Результат string
    public function getType()
    {
        return 'csv';
    }

Usage Example

Пример #1
0
 /**
  * tests getter for the formatter type
  *
  * @group formatter
  * @group sourcetest
  */
 public function testGetType()
 {
     self::assertSame('csv', $this->object->getType());
 }