Total Complexity | 2 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
31 | class AutogiroWriterFactory |
||
32 | { |
||
33 | /** |
||
34 | * @var WriterFactory |
||
35 | */ |
||
36 | private $decorated; |
||
37 | |||
38 | public function __construct(WriterFactory $decorated) |
||
39 | { |
||
40 | $this->decorated = $decorated; |
||
41 | } |
||
42 | |||
43 | public function createWriter(ConfigInterface $bgcNr, AccountNumber $bankgiro): WriterInterface |
||
46 | } |
||
47 | } |
||
48 |