Merge commit '9cd6b3e1c7cd81d0a4b0da68d9b3ff026c9f6495'

This commit is contained in:
Dylan K. Taylor
2020-01-22 15:04:06 +00:00
12 changed files with 19 additions and 57 deletions

View File

@@ -32,9 +32,7 @@ use function strtolower;
use function trim;
class BanEntry{
/**
* @var string
*/
/** @var string */
public static $format = "Y-m-d H:i:s O";
/** @var string */

View File

@@ -35,14 +35,10 @@ class PermissibleBase implements Permissible{
/** @var Permissible */
private $parent = null;
/**
* @var PermissionAttachment[]
*/
/** @var PermissionAttachment[] */
private $attachments = [];
/**
* @var PermissionAttachmentInfo[]
*/
/** @var PermissionAttachmentInfo[] */
private $permissions = [];
public function __construct(ServerOperator $opable){

View File

@@ -45,9 +45,7 @@ class Permission{
/** @var string */
private $description;
/**
* @var bool[]
*/
/** @var bool[] */
private $children;
/** @var string */

View File

@@ -30,9 +30,7 @@ class PermissionAttachment{
/** @var PermissionRemovedExecutor */
private $removed = null;
/**
* @var bool[]
*/
/** @var bool[] */
private $permissions = [];
/** @var Permissible */