Total Complexity | 7 |
Total Lines | 50 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | abstract class Mailcode_Factory_CommandSets_Set |
||
22 | { |
||
23 | /** |
||
24 | * @var Mailcode_Factory_Instantiator |
||
25 | */ |
||
26 | protected Mailcode_Factory_Instantiator $instantiator; |
||
27 | |||
28 | /** |
||
29 | * @var Mailcode_Commands |
||
30 | */ |
||
31 | protected Mailcode_Commands $commands; |
||
32 | |||
33 | public function __construct() |
||
34 | { |
||
35 | $this->instantiator = new Mailcode_Factory_Instantiator(); |
||
36 | $this->commands = Mailcode::create()->getCommands(); |
||
37 | |||
38 | $this->init(); |
||
39 | } |
||
40 | |||
41 | protected function init() : void |
||
43 | |||
44 | } |
||
45 | |||
46 | public function end(): Mailcode_Commands_Command_End |
||
62 | } |
||
63 | |||
64 | protected function quoteString(string $string): string |
||
73 |