Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 168 Bytes

README.md

File metadata and controls

11 lines (9 loc) · 168 Bytes

enum

Abstract class of enum in php.

Example:

class FruitsEnum extends Enum { const Orange = 'orange'; const Lemong = 'lemon'; const Apple = 'apple'; }