Standardize clone denying

This commit is contained in:
Dylan K. Taylor 2021-09-03 21:07:39 +01:00
parent b026ada489
commit 62435fe935
No known key found for this signature in database
GPG Key ID: 8927471A91CAFD3D
2 changed files with 32 additions and 4 deletions

View File

@ -27,6 +27,7 @@ use function preg_match;
trait EnumTrait{
use RegistryTrait;
use NotCloneable;
use NotSerializable;
/**
@ -98,8 +99,4 @@ trait EnumTrait{
public function equals(self $other) : bool{
return $this->enumName === $other->enumName;
}
public function __clone(){
throw new \LogicException("Enum members cannot be cloned");
}
}

View File

@ -0,0 +1,31 @@
<?php
/*
*
* ____ _ _ __ __ _ __ __ ____
* | _ \ ___ ___| | _____| |_| \/ (_)_ __ ___ | \/ | _ \
* | |_) / _ \ / __| |/ / _ \ __| |\/| | | '_ \ / _ \_____| |\/| | |_) |
* | __/ (_) | (__| < __/ |_| | | | | | | | __/_____| | | | __/
* |_| \___/ \___|_|\_\___|\__|_| |_|_|_| |_|\___| |_| |_|_|
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* @author PocketMine Team
* @link http://www.pocketmine.net/
*
*
*/
declare(strict_types=1);
namespace pocketmine\utils;
trait NotCloneable{
final public function __clone(){
throw new \LogicException("Cloning " . static::class . " objects is not allowed");
}
}