Browscap\Writer\CsvWriter::renderAllDivisionsFooter PHP Method

renderAllDivisionsFooter() public method

renders the footer for all divisions
public renderAllDivisionsFooter ( ) : Browscap\Writer\WriterInterface
return Browscap\Writer\WriterInterface
    public function renderAllDivisionsFooter()
    {
        return $this;
    }

Usage Example

Example #1
0
 /**
  * tests rendering the footer after all divisions
  *
  * @group writer
  * @group sourcetest
  */
 public function testRenderAllDivisionsFooter()
 {
     self::assertSame($this->object, $this->object->renderAllDivisionsFooter());
     self::assertSame('', file_get_contents($this->file));
 }