mirror of
https://github.com/elyby/accounts.git
synced 2024-11-01 00:13:06 +05:30
68ce8b3fb6
Исправлена ошибка в JoinForm Добавлено базовое API для общения с сервером системы скинов
32 lines
725 B
PHP
32 lines
725 B
PHP
<?php
|
|
namespace api\modules\session\models\protocols;
|
|
|
|
use yii\validators\RequiredValidator;
|
|
|
|
abstract class BaseHasJoined implements HasJoinedInterface {
|
|
|
|
private $username;
|
|
private $serverId;
|
|
|
|
public function __construct(string $username, string $serverId) {
|
|
$this->username = $username;
|
|
$this->serverId = $serverId;
|
|
}
|
|
|
|
public function getUsername() : string {
|
|
return $this->username;
|
|
}
|
|
|
|
public function getServerId() : string {
|
|
return $this->serverId;
|
|
}
|
|
|
|
public function validate() : bool {
|
|
$validator = new RequiredValidator();
|
|
|
|
return $validator->validate($this->username)
|
|
&& $validator->validate($this->serverId);
|
|
}
|
|
|
|
}
|