Back to Psalm

InvalidCast

docs/running_psalm/issues/InvalidCast.md

6.16.1135 B
Original Source

InvalidCast

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

php
<?php

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