Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 185 Bytes

InvalidEnumBackingType.md

File metadata and controls

13 lines (10 loc) · 185 Bytes

InvalidEnumBackingType

Enums can only be backed by int or string. Emitted when an enum is backed by something else.

<?php

enum Status: array 
{
   case None = [];
}