Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Enum.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public function __toString(): string
* @throws LogicException Enums are not cloneable
* because instances are implemented as singletons
*/
final protected function __clone()
final public function __clone()
{
throw new LogicException('Enums are not cloneable');
}
Expand Down
4 changes: 1 addition & 3 deletions tests/MabeEnumTest/EnumTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -355,12 +355,10 @@ public function testCloneNotCallableAndThrowsLogicException(): void

$reflectionClass = new ReflectionClass($enum);
$reflectionMethod = $reflectionClass->getMethod('__clone');
$this->assertTrue($reflectionMethod->isProtected(), 'The method __clone must be protected');
$this->assertTrue($reflectionMethod->isFinal(), 'The method __clone must be final');

$reflectionMethod->setAccessible(true);
$this->expectException(LogicException::class);
$reflectionMethod->invoke($enum);
clone $enum;
}

public function testNotSerializable(): void
Expand Down