| Total Complexity | 4 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class ResourceFactory |
||
| 11 | { |
||
| 12 | protected $mountManager; |
||
| 13 | protected $toolChain; |
||
| 14 | protected $slugify; |
||
| 15 | protected $entityManager; |
||
| 16 | protected $authorizationChecker; |
||
| 17 | |||
| 18 | public function __construct(ToolChain $toolChain) |
||
| 19 | { |
||
| 20 | $this->toolChain = $toolChain; |
||
| 21 | } |
||
| 22 | |||
| 23 | public function getRepository(string $tool, string $type) |
||
| 40 | } |
||
| 41 | } |
||
| 42 |