atom/language-php

Support enum keyword

Closed this issue · 1 comments

Have code like

<?php
enum Status : string
{
    case VALID = 'VALID';
    case NOT_FOUND = 'NOT_FOUND';
}

This is apparently a new PHP feature. enum is not colored. I think I expect a similar token to "class"

microsoft/vscode#142824

I'm working on it, PR should be up soon.