예제 #1
0
파일: DecimalType.php 프로젝트: seytar/psx
 /**
  * @return string
  */
 public function getId()
 {
     return md5(parent::getId() . $this->min . $this->max);
 }
예제 #2
0
파일: StringType.php 프로젝트: seytar/psx
 /**
  * @return string
  */
 public function getId()
 {
     return md5(parent::getId() . $this->minLength . $this->maxLength);
 }