<?php class UserEvent { protected const CREATED = 'created'; protected const CONFIRMED = 'confirmed'; protected const UPDATED = 'updated'; public const EVENTS_LIST = [ self::CREATED, self::CONFIRMED, self::UPDATED, ]; } print_r(UserEvent::EVENTS_LIST);
You have javascript disabled. You will not be able to edit any code.