コード例 #1
0
ファイル: TextChains.php プロジェクト: hasangilak/filotherapy
 public function readLineByLine(Closure $callback)
 {
     $lines = $this->file->extractAllLinesIntoArray();
     array_map($callback, $lines);
 }
コード例 #2
0
 public function testExtractAllLinesIntoArray()
 {
     $this->assertEquals($this->data, $this->file->extractAllLinesIntoArray());
 }