InvalidEnumMethod¶
列挙型は__get
、__toString
などのほとんどのマジックメソッドを定義できません。
<?php
enum Status: string {
case Open = 'open';
case Closed = 'closed';
public function __toString(): string {
return "SomeStatus";
}
}
列挙型は__get
、__toString
などのほとんどのマジックメソッドを定義できません。
<?php
enum Status: string {
case Open = 'open';
case Closed = 'closed';
public function __toString(): string {
return "SomeStatus";
}
}