Skip to content
Merged
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
10 changes: 4 additions & 6 deletions src/Enum.php
Original file line number Diff line number Diff line change
Expand Up @@ -87,25 +87,23 @@ final public function __clone()
}

/**
* @throws LogicException Enums are not serializable
* because instances are implemented as singletons
* @throws LogicException Serialization is not supported by default in this pseudo-enum implementation
*
* @psalm-return never-return
*/
final public function __sleep()
{
throw new LogicException('Enums are not serializable');
throw new LogicException('Serialization is not supported by default in this pseudo-enum implementation');
}

/**
* @throws LogicException Enums are not serializable
* because instances are implemented as singletons
* @throws LogicException Serialization is not supported by default in this pseudo-enum implementation
*
* @psalm-return never-return
*/
final public function __wakeup()
{
throw new LogicException('Enums are not serializable');
throw new LogicException('Serialization is not supported by default in this pseudo-enum implementation');
}

/**
Expand Down