portal.mkgtu.ru/common/modules/abiturient/models/chat/ManagerChatFile.php

14 lines
258 B
PHP
Raw Normal View History

2024-03-28 09:51:45 +03:00
<?php
namespace common\modules\abiturient\models\chat;
use yii\helpers\Url;
class ManagerChatFile extends ChatFileBase
{
public function getFileDownloadUrl(): ?string
{
return Url::to(['manager-chat/download', 'id' => $this->id]);
}
}