1<?php 2 3enum Foo 4{ 5 case Bar; 6 case Baz; 7 const CASES = [Foo::Bar, Foo::Baz]; 8} 9 10class Qux { 11 const CASES = [Foo::Bar, Foo::Baz]; 12} 13