Skip to content

Clearify serialization error message #161

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 28, 2024
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