Total Complexity | 4 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | class TableDumperFactory implements LoggerAwareInterface |
||
24 | { |
||
25 | use LoggerAwareTrait; |
||
26 | |||
27 | /** @var Pool */ |
||
28 | private $processPool; |
||
29 | |||
30 | /** |
||
31 | * TableDumperFactory constructor. |
||
32 | * |
||
33 | * @param Pool $processPool |
||
34 | */ |
||
35 | 3 | public function __construct(Pool $processPool) |
|
38 | 3 | } |
|
39 | |||
40 | /** |
||
41 | * @param ConnectionConfigInterface $connection |
||
42 | * |
||
43 | * @return TableDumperInterface |
||
44 | */ |
||
45 | 3 | public function getDumper(ConnectionConfigInterface $connection): TableDumperInterface |
|
63 |