We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
How to intercept is identical (===) check ? e.g.
is identical
$o1 == $o2;
will trigger __compare() handler, while
$o1 === $o2;
doesn't trigger neither __compare() nor __doOperation() with \ZEngine\System\OpCode::IS_IDENTICAL;