コード例 #1
0
ファイル: Region.php プロジェクト: heartshare/yii2-locations
 /**
  * @inheritdoc
  */
 public function rules()
 {
     return array_merge(parent::rules(), [[['country_id', 'name'], 'required'], [['country_id'], 'integer'], [['name'], 'string', 'max' => 255]]);
 }
コード例 #2
0
ファイル: Country.php プロジェクト: WolfForest/yii2-locations
 /**
  * @inheritdoc
  */
 public function rules()
 {
     return array_merge(parent::rules(), [[['name', 'code'], 'required'], [['name', 'code'], 'string', 'max' => 255]]);
 }