From 48fa19fdcd555ce73581cc723787d83608de3672 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Tue, 1 Dec 2020 17:30:23 +0000 Subject: [PATCH] PermissionAttachmentInfo::__construct() never throws an exception --- src/pocketmine/permission/PermissionAttachmentInfo.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/pocketmine/permission/PermissionAttachmentInfo.php b/src/pocketmine/permission/PermissionAttachmentInfo.php index ac5b88074c..4d5587ce0e 100644 --- a/src/pocketmine/permission/PermissionAttachmentInfo.php +++ b/src/pocketmine/permission/PermissionAttachmentInfo.php @@ -36,9 +36,6 @@ class PermissionAttachmentInfo{ /** @var bool */ private $value; - /** - * @throws \InvalidStateException - */ public function __construct(Permissible $permissible, string $permission, PermissionAttachment $attachment = null, bool $value){ $this->permissible = $permissible; $this->permission = $permission;