controller refactoring part 5

This commit is contained in:
Peter Papp
2021-07-20 11:23:45 +02:00
parent 8c493395c4
commit cde8b6aae3
25 changed files with 378 additions and 334 deletions

View File

@@ -1,12 +1,9 @@
<?php
namespace Domain\Homepage\Controllers;
use Doctrine\DBAL\Driver\PDOException;
use Domain\Pages\Models\Page;
use Illuminate\View\View;
use Domain\Pages\Models\Page;
use Doctrine\DBAL\Driver\PDOException;
class IndexController
{
@@ -36,4 +33,4 @@ class IndexController
->with('legal', $pages ?? null)
->with('installation', $setup_status);
}
}
}