Total Complexity | 4 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
13 | class TableSeederFactory implements LoggerAwareInterface |
||
14 | { |
||
15 | use LoggerAwareTrait; |
||
16 | |||
17 | /** @var Pool */ |
||
18 | private $processPool; |
||
19 | |||
20 | /** |
||
21 | * TableDumperFactory constructor. |
||
22 | * |
||
23 | * @param Pool $processPool |
||
24 | */ |
||
25 | 3 | public function __construct(Pool $processPool) |
|
28 | 3 | } |
|
29 | |||
30 | /** |
||
31 | * @param ConnectionConfigInterface $connection |
||
32 | * |
||
33 | * @return TableSeederInterface |
||
34 | */ |
||
35 | 3 | public function getSeeder(ConnectionConfigInterface $connection): TableSeederInterface |
|
53 |