Browscap\Writer\CsvWriter::renderDivisionFooter PHP Method

renderDivisionFooter() public method

renders the footer for a division
public renderDivisionFooter ( ) : Browscap\Writer\WriterInterface
return Browscap\Writer\WriterInterface
    public function renderDivisionFooter()
    {
        return $this;
    }

Usage Example

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