예제 #1
0
파일: Base.php 프로젝트: wouterj/docbot
 /**
  * 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'));
 }