コード例 #1
0
ファイル: PageOutput.php プロジェクト: garethellis36/tldr-php
 public function write(TldrPage $page)
 {
     $this->output->writeln("");
     $lines = explode(PHP_EOL, $page->getContent());
     foreach ($lines as $line) {
         $this->writeLine($line);
     }
     $this->output->writeln("");
 }