| Total Complexity | 4 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 11 | class SettingsResolver implements SettingsResolverInterface |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var RepositoryInterface |
||
| 15 | */ |
||
| 16 | private $settingsRepository; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param RepositoryInterface $settingsRepository |
||
| 20 | */ |
||
| 21 | public function __construct(RepositoryInterface $settingsRepository) |
||
| 22 | { |
||
| 23 | $this->settingsRepository = $settingsRepository; |
||
| 24 | } |
||
| 25 | |||
| 26 | public function resolve($schemaAlias, $namespace = null) |
||
| 41 | } |
||
| 42 | } |
||
| 44 |