Пример #1
0
 /**
  * Default implementation of the review method.
  *
  * The default implementation iterates over each line and
  * let the reviewer review that line.
  *
  * @param Text $file
  */
 public function review(Text $file)
 {
     $file->map(array($this, 'doReviewLine'));
 }