mirror of
https://github.com/elyby/accounts.git
synced 2024-12-04 20:49:48 +05:30
32 lines
728 B
PHP
32 lines
728 B
PHP
<?php
|
|
namespace api\modules\session\models\protocols;
|
|
|
|
abstract class BaseHasJoined implements HasJoinedInterface {
|
|
|
|
private $username;
|
|
|
|
private $serverId;
|
|
|
|
public function __construct(string $username, string $serverId) {
|
|
$this->username = trim($username);
|
|
$this->serverId = trim($serverId);
|
|
}
|
|
|
|
public function getUsername(): string {
|
|
return $this->username;
|
|
}
|
|
|
|
public function getServerId(): string {
|
|
return $this->serverId;
|
|
}
|
|
|
|
public function validate(): bool {
|
|
return !$this->isEmpty($this->username) && !$this->isEmpty($this->serverId);
|
|
}
|
|
|
|
private function isEmpty($value): bool {
|
|
return $value === null || $value === '';
|
|
}
|
|
|
|
}
|