Total Complexity | 5 |
Total Lines | 42 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
20 | class MemoryLimit extends Recommendation |
||
21 | { |
||
22 | // Public Methods |
||
23 | // ========================================================================= |
||
24 | |||
25 | /** |
||
26 | * @inheritdoc |
||
27 | */ |
||
28 | public function evaluate() |
||
29 | { |
||
30 | } |
||
31 | |||
32 | /** |
||
33 | * @inheritdoc |
||
34 | */ |
||
35 | public function recommendation(): bool |
||
36 | { |
||
37 | return true; |
||
38 | } |
||
39 | |||
40 | /** |
||
41 | * @inheritdoc |
||
42 | */ |
||
43 | public function summary(): string |
||
44 | { |
||
45 | return 'This is a summary'; |
||
46 | } |
||
47 | |||
48 | /** |
||
49 | * @inheritdoc |
||
50 | */ |
||
51 | public function detail(): string |
||
52 | { |
||
53 | return 'This is a detail'; |
||
54 | } |
||
55 | |||
56 | /** |
||
57 | * @inheritdoc |
||
58 | */ |
||
59 | public function learnMoreLink(): string |
||
62 | } |
||
63 | } |
||
64 |