InvalidCast

March 20, 2020 ยท View on GitHub

Emitted when attempting to cast a value that's not castable

<?php

class A {}
$a = new A();
$b = (string)$a;