Зимние правки. MVC/

Signed-off-by: lopar <lopar.4ever@gmail.com>
This commit is contained in:
lopar
2022-08-09 22:57:43 +03:00
parent 0f62ee20e7
commit b9b4c01cf0
104 changed files with 2254 additions and 2086 deletions
+29
View File
@@ -0,0 +1,29 @@
<?php
# Date: 23.02.2022 (1:49)
namespace Battles;
trait Users
{
protected int $id = 0;
protected string $login = '';
protected int $level = 0;
protected ?int $align = null;
protected ?string $clan = null;
protected ?int $admin = null;
protected int $room = 0;
protected int $block = 0;
protected string $shadow = '';
//userprofile
private string $pass = '';
private string $email = '';
private string $realname = '';
private string $borndate = '';
private string $info = '';
private string $ip = '';
private ?int $money = null;
private bool $fuk;
}