Total Complexity | 1 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
15 | final class RainyWeather extends ACharPattern |
||
16 | { |
||
17 | protected const INTERVAL = 100; |
||
18 | |||
19 | protected const PATTERN = [ |
||
20 | '🌤 ', |
||
21 | '🌤 ', |
||
22 | '🌤 ', |
||
23 | '🌥 ', |
||
24 | '🌧 ', |
||
25 | '🌨 ', |
||
26 | '🌧 ', |
||
27 | '🌨 ', |
||
28 | '🌧 ', |
||
29 | '🌨 ', |
||
30 | '🌧 ', |
||
31 | '🌨 ', |
||
32 | '🌧 ', |
||
33 | '🌨 ', |
||
34 | '🌧 ', |
||
35 | '🌥 ', |
||
36 | '🌤 ', |
||
37 | '🌤 ', |
||
38 | '🌤 ', |
||
39 | ]; |
||
40 | |||
41 | public function __construct( |
||
52 |