Browscap\Writer\CsvWriter::renderSectionFooter PHP 메소드

renderSectionFooter() 공개 메소드

renders the footer for a section
public renderSectionFooter ( string $sectionName = '' ) : Browscap\Writer\WriterInterface
$sectionName string
리턴 Browscap\Writer\WriterInterface
    public function renderSectionFooter($sectionName = '')
    {
        return $this;
    }

Usage Example

예제 #1
0
 /**
  * tests rendering the footer of one section
  *
  * @group writer
  * @group sourcetest
  */
 public function testRenderSectionFooter()
 {
     self::assertSame($this->object, $this->object->renderSectionFooter());
     self::assertSame('', file_get_contents($this->file));
 }