diff --git a/app/app/Models/EmailVerification.php b/app/app/Models/EmailVerification.php index 6df64c06..7f2e2997 100644 --- a/app/app/Models/EmailVerification.php +++ b/app/app/Models/EmailVerification.php @@ -25,6 +25,7 @@ use Illuminate\Support\Carbon; * @property Carbon $expires_at * @property Carbon|null $verified_at * @property Carbon $created_at + * * @mixin IdeHelperEmailVerification */ class EmailVerification extends Model diff --git a/app/app/Models/ImpersonationToken.php b/app/app/Models/ImpersonationToken.php index cf019bb3..909d501c 100644 --- a/app/app/Models/ImpersonationToken.php +++ b/app/app/Models/ImpersonationToken.php @@ -33,6 +33,7 @@ use Illuminate\Support\Carbon; * @property Carbon|null $second_approval_at * @property Carbon $created_at * @property string|null $session_token_hash + * * @mixin IdeHelperImpersonationToken */ class ImpersonationToken extends Model diff --git a/app/app/Models/PdSubjectRequest.php b/app/app/Models/PdSubjectRequest.php index 6d84f550..6094c1bd 100644 --- a/app/app/Models/PdSubjectRequest.php +++ b/app/app/Models/PdSubjectRequest.php @@ -29,6 +29,7 @@ use Illuminate\Support\Facades\DB; * @property string $deadline_at * @property string|null $completed_at * @property bool $processing_restricted + * * @mixin IdeHelperPdSubjectRequest */ class PdSubjectRequest extends Model diff --git a/app/app/Models/SaasAdminAuditLog.php b/app/app/Models/SaasAdminAuditLog.php index 5fcdf999..74abde0c 100644 --- a/app/app/Models/SaasAdminAuditLog.php +++ b/app/app/Models/SaasAdminAuditLog.php @@ -30,6 +30,7 @@ use Illuminate\Support\Carbon; * @property int|null $approved_by * @property Carbon|null $approved_at * @property Carbon $created_at + * * @mixin IdeHelperSaasAdminAuditLog */ class SaasAdminAuditLog extends Model diff --git a/app/app/Models/SaasInvoice.php b/app/app/Models/SaasInvoice.php index f8fc47f6..170776c0 100644 --- a/app/app/Models/SaasInvoice.php +++ b/app/app/Models/SaasInvoice.php @@ -36,6 +36,7 @@ use Illuminate\Support\Carbon; * @property Carbon|null $expires_at * @property Carbon|null $paid_at * @property Carbon|null $cancelled_at + * * @mixin IdeHelperSaasInvoice */ class SaasInvoice extends Model diff --git a/app/app/Models/SaasInvoiceItem.php b/app/app/Models/SaasInvoiceItem.php index a3ed6270..6a7e08af 100644 --- a/app/app/Models/SaasInvoiceItem.php +++ b/app/app/Models/SaasInvoiceItem.php @@ -20,6 +20,7 @@ use Illuminate\Database\Eloquent\Model; * @property string|null $vat_rate * @property string|null $vat_amount * @property string $amount_total + * * @mixin IdeHelperSaasInvoiceItem */ class SaasInvoiceItem extends Model diff --git a/app/app/Models/SaasUpdDocument.php b/app/app/Models/SaasUpdDocument.php index 7e23a7e3..e1aa90b4 100644 --- a/app/app/Models/SaasUpdDocument.php +++ b/app/app/Models/SaasUpdDocument.php @@ -33,6 +33,7 @@ use Illuminate\Support\Carbon; * @property string|null $pdf_path * @property string $status * @property Carbon|null $issued_at + * * @mixin IdeHelperSaasUpdDocument */ class SaasUpdDocument extends Model diff --git a/app/app/Models/SalesAttachmentRequest.php b/app/app/Models/SalesAttachmentRequest.php index 61cd277d..dde307f5 100644 --- a/app/app/Models/SalesAttachmentRequest.php +++ b/app/app/Models/SalesAttachmentRequest.php @@ -30,6 +30,7 @@ use Illuminate\Database\Eloquent\Relations\BelongsTo; * @property int|null $decided_by * @property Carbon|null $decided_at * @property Carbon $created_at + * * @mixin IdeHelperSalesAttachmentRequest */ class SalesAttachmentRequest extends Model diff --git a/app/app/Models/SalesClientAssignment.php b/app/app/Models/SalesClientAssignment.php index b3c57408..f3715091 100644 --- a/app/app/Models/SalesClientAssignment.php +++ b/app/app/Models/SalesClientAssignment.php @@ -30,6 +30,7 @@ use Illuminate\Database\Eloquent\Relations\BelongsTo; * @property array $tariff_params * @property Carbon $assigned_at * @property Carbon $created_at + * * @mixin IdeHelperSalesClientAssignment */ class SalesClientAssignment extends Model diff --git a/app/app/Models/SalesPayout.php b/app/app/Models/SalesPayout.php index 35177d2c..b6c276bb 100644 --- a/app/app/Models/SalesPayout.php +++ b/app/app/Models/SalesPayout.php @@ -27,6 +27,7 @@ use Illuminate\Database\Eloquent\Relations\BelongsTo; * @property string|null $comment * @property int $created_by * @property Carbon $created_at + * * @mixin IdeHelperSalesPayout */ class SalesPayout extends Model diff --git a/app/app/Models/SalesTariff.php b/app/app/Models/SalesTariff.php index 3dd4078f..619ab18d 100644 --- a/app/app/Models/SalesTariff.php +++ b/app/app/Models/SalesTariff.php @@ -26,6 +26,7 @@ use Illuminate\Database\Eloquent\Relations\HasMany; * @property string $kind * @property array $params * @property bool $is_active + * * @mixin IdeHelperSalesTariff */ class SalesTariff extends Model diff --git a/app/app/Models/SalesUser.php b/app/app/Models/SalesUser.php index a50bcb11..4fe48c10 100644 --- a/app/app/Models/SalesUser.php +++ b/app/app/Models/SalesUser.php @@ -34,6 +34,7 @@ use Laravel\Sanctum\HasApiTokens; * @property int|null $created_by * @property CarbonInterface $created_at * @property CarbonInterface|null $updated_at + * * @mixin IdeHelperSalesUser */ class SalesUser extends Authenticatable diff --git a/app/app/Models/SupplierLead.php b/app/app/Models/SupplierLead.php index cbca246e..e87845d5 100644 --- a/app/app/Models/SupplierLead.php +++ b/app/app/Models/SupplierLead.php @@ -25,6 +25,7 @@ use Illuminate\Database\Eloquent\Relations\BelongsTo; * @property string|null $phone_operator * @property string|null $region_source * @property int|null $resolved_subject_code + * * @mixin IdeHelperSupplierLead */ class SupplierLead extends Model diff --git a/app/app/Models/SupplierLeadDelivery.php b/app/app/Models/SupplierLeadDelivery.php index 5f7a870a..0eb09923 100644 --- a/app/app/Models/SupplierLeadDelivery.php +++ b/app/app/Models/SupplierLeadDelivery.php @@ -15,6 +15,7 @@ use Illuminate\Database\Eloquent\Model; * @property int $tenant_id * @property int|null $deal_id * @property string $created_at + * * @mixin IdeHelperSupplierLeadDelivery */ class SupplierLeadDelivery extends Model diff --git a/app/app/Models/SupplierManualSyncQueue.php b/app/app/Models/SupplierManualSyncQueue.php index 39b0975c..d06606e6 100644 --- a/app/app/Models/SupplierManualSyncQueue.php +++ b/app/app/Models/SupplierManualSyncQueue.php @@ -25,6 +25,7 @@ use Illuminate\Support\Carbon; * @property int|null $resolved_by_user_id * @property Carbon|null $created_at * @property Carbon|null $resolved_at + * * @mixin IdeHelperSupplierManualSyncQueue */ class SupplierManualSyncQueue extends Model diff --git a/app/app/Models/SupportRequest.php b/app/app/Models/SupportRequest.php index fa0bf60f..9dfcde45 100644 --- a/app/app/Models/SupportRequest.php +++ b/app/app/Models/SupportRequest.php @@ -17,6 +17,7 @@ use Illuminate\Support\Carbon; * @property string $contact * @property string $message * @property Carbon $created_at + * * @mixin IdeHelperSupportRequest */ class SupportRequest extends Model diff --git a/app/app/Models/SystemSetting.php b/app/app/Models/SystemSetting.php index 1670cffe..873af8e3 100644 --- a/app/app/Models/SystemSetting.php +++ b/app/app/Models/SystemSetting.php @@ -18,6 +18,7 @@ use Illuminate\Support\Carbon; * @property string|null $description * @property Carbon $updated_at * @property int|null $updated_by + * * @mixin IdeHelperSystemSetting */ class SystemSetting extends Model diff --git a/app/app/Models/TenantRequisites.php b/app/app/Models/TenantRequisites.php index 0c80a626..69c3795e 100644 --- a/app/app/Models/TenantRequisites.php +++ b/app/app/Models/TenantRequisites.php @@ -14,6 +14,7 @@ use Illuminate\Support\Carbon; * интроспекции (стаб IdeHelperTenantRequisites не генерируется), поэтому * * @property-аннотации заданы вручную по db/schema.sql (tenant_requisites). + * * @property int $id * @property int $tenant_id * @property string $subject_type @@ -33,6 +34,7 @@ use Illuminate\Support\Carbon; * @property Carbon|null $requisites_completed_at * @property Carbon|null $created_at * @property Carbon|null $updated_at + * * @mixin IdeHelperTenantRequisites */ class TenantRequisites extends Model diff --git a/app/app/Models/UserRecoveryCode.php b/app/app/Models/UserRecoveryCode.php index e4319bc4..1318478d 100644 --- a/app/app/Models/UserRecoveryCode.php +++ b/app/app/Models/UserRecoveryCode.php @@ -19,6 +19,7 @@ use Illuminate\Support\Carbon; * @property string $code_hash * @property Carbon|null $used_at * @property Carbon|null $created_at + * * @mixin IdeHelperUserRecoveryCode */ class UserRecoveryCode extends Model