Total Complexity | 1 |
Total Lines | 49 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
11 | class SimulatorType implements ArrayInterface |
||
|
|||
12 | { |
||
13 | /** |
||
14 | * NO |
||
15 | */ |
||
16 | const NO = 0; |
||
17 | |||
18 | /** |
||
19 | * MINI |
||
20 | */ |
||
21 | const MINI = 6; |
||
22 | |||
23 | /** |
||
24 | * COMPLETE |
||
25 | */ |
||
26 | const COMPLETE = 2; |
||
27 | |||
28 | /** |
||
29 | * SELECTOR |
||
30 | */ |
||
31 | const SELECTOR = 3; |
||
32 | |||
33 | /** |
||
34 | * TEXT |
||
35 | */ |
||
36 | const TEXT = 4; |
||
37 | |||
38 | /** |
||
39 | * TEXT |
||
40 | */ |
||
41 | const SIMPLE = 1; |
||
42 | |||
43 | /** |
||
44 | * @return array |
||
45 | */ |
||
46 | public function toOptionArray() |
||
64 |
This interface has been deprecated. The supplier of the interface has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the interface will be removed and what other interface to use instead.