/**
  * Determins if the given file should be revewed.
  *
  * @param ReviewableInterface $file
  *
  * @return bool
  */
 public function canReview(ReviewableInterface $file)
 {
     return $file->getExtension() === 'php';
 }