示例#1
0
 /**
  * @param $checksum
  * @return null|InputFile
  */
 public function getByChecksum($checksum)
 {
     /** @var static $row */
     $row = $this->model->ofChecksum($checksum);
     return $row ? InputFile::initWithFileMeta($row) : null;
 }