11<?php
22namespace amin0x \nabidh ;
33
4+ /**
5+ * Class representing different ambulatory statuses.
6+ */
47class AmbulatoryStatus
58{
6- public const No_functional_limitations = 'A0 ' ;
7- public const Ambulates_with_assistive_device = 'A1 ' ;
8- public const Wheelchair_stretcher_bound = 'A2 ' ;
9- public const Comatose_non_responsive = 'A3 ' ;
10- public const Disoriented = 'A4 ' ;
11- public const Vision_impaired = 'A5 ' ;
12- public const Hearing_impaired = 'A6 ' ;
13- public const Speech_impaired = 'A7 ' ;
14- public const Non_English_speaking = 'A8 ' ;
15- public const Functional_level_unknown = 'A9 ' ;
16- public const Oxygen_therapy = 'B1 ' ;
17- public const Special_equipment = 'B2 ' ;
18- public const Amputee = 'B3 ' ;
19- public const Mastectomy = 'B4 ' ;
20- public const Paraplegic = 'B5 ' ;
21- public const Pregnant = 'B6 ' ;
22- }
9+ public const NO_FUNCTIONAL_LIMITATIONS = 'A0 ' ;
10+ public const AMBULATES_WITH_ASSISTIVE_DEVICE = 'A1 ' ;
11+ public const WHEELCHAIR_STRETCHER_BOUND = 'A2 ' ;
12+ public const COMATOSE_NON_RESPONSIVE = 'A3 ' ;
13+ public const DISORIENTED = 'A4 ' ;
14+ public const VISION_IMPAIRED = 'A5 ' ;
15+ public const HEARING_IMPAIRED = 'A6 ' ;
16+ public const SPEECH_IMPAIRED = 'A7 ' ;
17+ public const NON_ENGLISH_SPEAKING = 'A8 ' ;
18+ public const FUNCTIONAL_LEVEL_UNKNOWN = 'A9 ' ;
19+ public const OXYGEN_THERAPY = 'B1 ' ;
20+ public const SPECIAL_EQUIPMENT = 'B2 ' ;
21+ public const AMPUTEE = 'B3 ' ;
22+ public const MASTECTOMY = 'B4 ' ;
23+ public const PARAPLEGIC = 'B5 ' ;
24+ public const PREGNANT = 'B6 ' ;
25+
26+ /**
27+ * Prevent instantiation of this class.
28+ */
29+ private function __construct ()
30+ {
31+ // This class should not be instantiated.
32+ }
33+ }
0 commit comments