How to intercept `is identical` (===) check ? e.g. ```php $o1 == $o2; ``` will trigger __compare() handler, while ```php $o1 === $o2; ``` doesn't trigger neither __compare() nor __doOperation() with \ZEngine\System\OpCode::IS_IDENTICAL;
How to intercept
is identical(===) check ? e.g.will trigger __compare() handler, while
doesn't trigger neither __compare() nor __doOperation() with \ZEngine\System\OpCode::IS_IDENTICAL;