Back to Psalm

InvalidEnumMethod

docs/running_psalm/issues/InvalidEnumMethod.md

6.16.1273 B
Original Source

InvalidEnumMethod

Enums may not define most of the magic methods like __get, __toString, etc.

php
<?php
enum Status: string {
    case Open = 'open';
    case Closed = 'closed';

    public function __toString(): string {
        return "SomeStatus";
    }
}