Пример #1
0
 /**
  *
  * @see Reporter::stop Add a new line with the new file name
  *
  * @param $phpFile the
  *        	file currently processed
  */
 public function currentlyProcessing($phpFile)
 {
     parent::currentlyProcessing($phpFile);
     $this->_write("\nFile: " . $this->currentPhpFile . PHP_EOL);
 }
 /**
  *
  * @see Reporter::currentlyProcessing add the previous element to the tree and start a new element
  *      for the new file
  *
  * @param $phpFile the
  *        	file currently processed
  */
 public function currentlyProcessing($phpFile)
 {
     parent::currentlyProcessing($phpFile);
     $this->endCurrentElement();
     $this->startNewElement($phpFile);
 }