コード例 #1
0
ファイル: Country.php プロジェクト: AlvaCorp/yii2-boilerplate
 /**
  * @inheritdoc
  */
 public function init()
 {
     parent::init();
     $this->operation = new CountryOperation(['model' => $this]);
 }
コード例 #2
0
ファイル: Postcode.php プロジェクト: fredyns/yii2-boilerplate
 /**
  * @inheritdoc
  */
 public function init()
 {
     parent::init();
     $this->operation = new PostcodeOperation(['model' => $this]);
 }
コード例 #3
0
ファイル: District.php プロジェクト: fredyns/yii2-boilerplate
 /**
  * @inheritdoc
  */
 public function init()
 {
     parent::init();
     $this->operation = new DistrictOperation(['model' => $this]);
 }