Example #1
0
 public function renderTo(template $template, $destination)
 {
     $template->render(array('class' => $this->class, 'coverage' => $this->coverage, 'methods' => $this->methods, 'lines' => $this->lines), $destination);
     return $this;
 }
Example #2
0
 public function renderTo(template $template, $destination)
 {
     $template->render(array('method' => $this->method, 'coverage' => $this->coverage, 'branches' => $this->branches, 'paths' => $this->paths), $destination);
     return $this;
 }
Example #3
0
 public function renderTo(template $template, $destination)
 {
     $template->render(array('classes' => $this->classes, 'coverage' => $this->coverage), $destination);
     return $this;
 }