File tree 6 files changed +26
-4
lines changed
6 files changed +26
-4
lines changed Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ namespace App \Controllers ;
4
+
5
+ class ErrorsController extends \SideDevOrg \MiniPhpFw \Controller
6
+ {
7
+ /**
8
+ * Override MiniPhpFw not found method
9
+ *
10
+ * @return string
11
+ */
12
+ public function not_found () : string
13
+ {
14
+ return $ this ->view ('errors/404 ' );
15
+ }
16
+ }
Original file line number Diff line number Diff line change 4
4
5
5
class HomeController extends \SideDevOrg \MiniPhpFw \Controller
6
6
{
7
+ /**
8
+ * GET /
9
+ */
7
10
public function index ()
8
11
{
9
12
return $ this ->view ('home ' );
Original file line number Diff line number Diff line change 1
1
{{ % BLOCKS }}
2
- {{ < layout }}
2
+ {{ < layout/master }}
3
3
{{ $ title }} Not found{{ / title }}
4
4
5
5
{{ $ content }}
9
9
</div >
10
10
11
11
{{ / content }}
12
- {{ / layout }}
12
+ {{ / layout/master }}
Original file line number Diff line number Diff line change 1
1
{{ % BLOCKS }}
2
- {{ < layout }}
2
+ {{ < layout/master }}
3
3
{{ $ title }} Home{{ / title }}
4
4
5
5
{{ $ content }}
9
9
</div >
10
10
11
11
{{ / content }}
12
- {{ / layout }}
12
+ {{ / layout/master }}
File renamed without changes.
Original file line number Diff line number Diff line change 23
23
'routesCache ' => '../app/storage/route.cache ' ,
24
24
'assets_manifest ' => 'static/build/mix-manifest.json ' ,
25
25
],
26
+ 'config ' => [
27
+ 'not_found_controller ' => '\App\Controllers\ErrorsController::not_found ' ,
28
+ ]
26
29
]
27
30
);
You can’t perform that action at this time.
0 commit comments