*/ class CustomerQuery extends ActiveQuery { public static $joinWithProfile = false; public function init(): void { if (static::$joinWithProfile) { $this->innerJoinWith('profile'); } parent::init(); } public function active() { $this->andWhere('[[status]]=1'); return $this; } }