Initial import

This commit is contained in:
Admin Nasledstvo
2026-05-01 20:52:04 +03:00
commit ac168868ee
10028 changed files with 2337954 additions and 0 deletions
@@ -0,0 +1,25 @@
<?php
namespace app\models;
use app\models\register\Partner;
/**
* Class QrValidators
* @package app\models
* @property $user_id
* @property $partner_id
* @property \app\models\register\Partner $partner
* @property \app\models\UserPublic $user
*/
class QrValidators extends _Base
{
public function getPartner() {
return $this->hasOne(Partner::class, ['id' => 'partner_id']);
}
public function getUser() {
return $this->hasOne(UserPublic::class, ['id' => 'user_id']);
}
}