1 | <?php |
||
9 | class SettingsController extends Controller |
||
10 | { |
||
11 | // TODO: Needs phpunit tests. -> create github issue |
||
12 | |||
13 | /** |
||
14 | * SettingsController constructor. |
||
15 | */ |
||
16 | public function __construct() |
||
21 | |||
22 | /** |
||
23 | * Get the general settings page. |
||
24 | * |
||
25 | * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View |
||
26 | */ |
||
27 | public function index() |
||
31 | |||
32 | /** |
||
33 | * Get the email settings page. |
||
34 | * |
||
35 | * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View |
||
36 | */ |
||
37 | public function email() |
||
41 | |||
42 | } |
||
43 |