We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug For example the \Phalcon\Mvc\Model class implements \Serializable. This class is defined as:
\Phalcon\Mvc\Model
\Serializable
interface Serializable { public serialize(): ?string public unserialize(string $data): void }
The \Phalcon\Mvc\Model has it implemented like this:
public function serialize() -> string public function unserialize(var data)
Expected behavior Follow the interface definition.
Details
The text was updated successfully, but these errors were encountered:
[phalcon#16591] - fix: correct the \Serializable implementation.
2b730be
[phalcon#16591] - chore: added missing changelog changes
73321dc
Resolved in #16592
Thank you again @noone-silent
Sorry, something went wrong.
No branches or pull requests
Describe the bug
For example the
\Phalcon\Mvc\Model
class implements\Serializable
. This class is defined as:The
\Phalcon\Mvc\Model
has it implemented like this:Expected behavior
Follow the interface definition.
Details
The text was updated successfully, but these errors were encountered: