Browscap\Writer\CsvWriter::renderSectionHeader PHP Method

renderSectionHeader() public method

renders the header for a section
public renderSectionHeader ( string $sectionName ) : Browscap\Writer\WriterInterface
$sectionName string
return Browscap\Writer\WriterInterface
    public function renderSectionHeader($sectionName)
    {
        return $this;
    }

Usage Example

コード例 #1
0
ファイル: CsvWriterTest.php プロジェクト: browscap/browscap
 /**
  * tests rendering the header of one section
  *
  * @group writer
  * @group sourcetest
  */
 public function testRenderSectionHeader()
 {
     self::assertSame($this->object, $this->object->renderSectionHeader('test'));
     self::assertSame('', file_get_contents($this->file));
 }