We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 48 | public function __construct(Model $model, Collection $navigationRepository) |
||
| 49 | { |
||
| 50 | $settings = app(SettingsManager::class); |
||
| 51 | $navigation = new Navigation($navigationRepository); |
||
| 52 | |||
| 53 | $this->page = new Page($model); |
||
| 54 | $this->contact = new Contact($settings); |
||
| 55 | $this->site = new Site($settings); |
||
| 56 | $this->collections = new Collections($model, $navigation); |
||
| 57 | } |
||
| 58 | } |
||
| 59 |