예제 #1
0
파일: File.php 프로젝트: ecomdev/compiler
 public function getChecksum()
 {
     $checksum = parent::getChecksum();
     if ($checksum instanceof FileChecksumInterface) {
         return $checksum->calculate($this->file);
     }
     return $checksum;
 }