Skip to content
This repository has been archived by the owner on Aug 17, 2023. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'origin/bugfix'
Browse files Browse the repository at this point in the history
  • Loading branch information
holyshared committed May 10, 2015
2 parents 67ff115 + 51b8d49 commit f01e4a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/report/parser/CloverReportParser.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ private function parseFileNodes(Crawler $files)

$this->parseLineNodes($lines);
};
$fileNodeParser->bind($this);
$fileNodeParser->bindTo($this);

$files->each($fileNodeParser);

Expand All @@ -113,7 +113,7 @@ private function parseLineNodes(Crawler $lines)
$lineNodeParser = function(Crawler $line) {
$this->parseLine($line);
};
$lineNodeParser->bind($this);
$lineNodeParser->bindTo($this);

$lines->each($lineNodeParser);

Expand Down

0 comments on commit f01e4a7

Please sign in to comment.