Browscap\Writer\CsvWriter::fileStart PHP Method

fileStart() public method

Generates a start sequence for the output file
public fileStart ( ) : Browscap\Writer\WriterInterface
return Browscap\Writer\WriterInterface
    public function fileStart()
    {
        return $this;
    }

Usage Example

Example #1
0
 /**
  * tests rendering the start of the file
  *
  * @group writer
  * @group sourcetest
  */
 public function testFileStart()
 {
     self::assertSame($this->object, $this->object->fileStart());
     self::assertSame('', file_get_contents($this->file));
 }