| Type | Line | Description |
|---|---|---|
| 11 | github.com/Dreamscapes/Enumeration | |
| 12 | choosealicense.com/licenses/bsd-3-clause BSD (3-Clause) License | |
| 28 | Instances of enumeration members are cached here | |
| 32 | Each instance of an Enumeration holds the member's value here | |
| 64 | Prints 'Horse' | |
| 65 | Returns null, method is type-sensitive | |
| 73 | Search using strict comparison | |
| 108 | Prints an integer, 1 | |
| 116 | Typecast to string (we could be getting either a string or an instance of | |
| 117 | Enumeration in $member) | |
| 148 | Prints an integer, 1 (bool true) | |
| 149 | Prints nothing (bool false) | |
| 208 | Array | |
| 209 | ( | |
| 210 | 0 => 'Horse' | |
| 211 | 1 => 'Dog' | |
| 212 | ) | |
| 234 | Array | |
| 235 | ( | |
| 236 | 'Horse' => 0 | |
| 237 | 'Dog' => 1 | |
| 238 | ) | |
| 259 | Animal | |
| 260 | Enumeration | |
| 315 | Instance of this enumeration member does not exist yet - let's create one |