v0.8.0 - enums handled
Codestyle will understand PHP 8.1 enums in right way.
Before:
enum HTTPMethods: string {
case GET = "get":
case POST = "post":
}
After:
enum HTTPMethods: string {
case GET = "get";
case POST = "post";
}
Codestyle will understand PHP 8.1 enums in right way.
Before:
enum HTTPMethods: string {
case GET = "get":
case POST = "post":
}
After:
enum HTTPMethods: string {
case GET = "get";
case POST = "post";
}