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;