Total Complexity | 6 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
21 | abstract class Mailcode_Commands_ShowBase |
||
22 | extends Mailcode_Commands_Command |
||
23 | implements |
||
24 | Mailcode_Commands_Command_Type_Standalone, |
||
25 | Mailcode_Interfaces_Commands_Variable, |
||
26 | Mailcode_Interfaces_Commands_URLEncode |
||
27 | { |
||
28 | use Mailcode_Traits_Commands_Validation_Variable; |
||
29 | use Mailcode_Traits_Commands_Validation_URLEncode; |
||
30 | |||
31 | public function supportsURLEncoding() : bool |
||
32 | { |
||
33 | return true; |
||
34 | } |
||
35 | |||
36 | public function requiresParameters(): bool |
||
37 | { |
||
38 | return true; |
||
39 | } |
||
40 | |||
41 | public function generatesContent() : bool |
||
42 | { |
||
43 | return true; |
||
44 | } |
||
45 | |||
46 | public function supportsLogicKeywords() : bool |
||
47 | { |
||
48 | return false; |
||
49 | } |
||
50 | |||
51 | public function supportsType(): bool |
||
52 | { |
||
53 | return false; |
||
54 | } |
||
55 | |||
56 | public function getDefaultType() : string |
||
59 | } |
||
60 | } |