Browscap\Writer\JsonWriter::fileStart PHP Метод

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

Generates a start sequence for the output file
public fileStart ( ) : Browscap\Writer\WriterInterface
Результат Browscap\Writer\WriterInterface
    public function fileStart()
    {
        if ($this->isSilent()) {
            return $this;
        }
        fputs($this->file, '{' . PHP_EOL);
        return $this;
    }

Usage Example

Пример #1
0
 /**
  * tests rendering the start of the file
  *
  * @group writer
  * @group sourcetest
  */
 public function testFileStartIfSilent()
 {
     $this->object->setSilent(true);
     self::assertSame($this->object, $this->object->fileStart());
     self::assertSame('', file_get_contents($this->file));
 }