예제 #1
0
파일: File.php 프로젝트: tmli3b3rm4n/phan
 /**
  * @return string
  * The primary key of this model
  */
 public function primaryKeyValue() : string
 {
     return $this->file->getFilePath();
 }
예제 #2
0
파일: File.php 프로젝트: hslatman/phan
 /**
  * @return array
  * Get a map from column name to row values for
  * this instance
  */
 public function toRow() : array
 {
     return ['file_path' => $this->file->getFilePath(), 'modification_time' => $this->file->getModificationTime()];
 }