]> BookStack Code Mirror - bookstack/blobdiff - app/Http/Controllers/HomeController.php
Improved empty lists. Fixes #10.
[bookstack] / app / Http / Controllers / HomeController.php
index ad87188b718de5aede5d2cbc6d74f10c66cc3eff..3ed1da4c1c0b38c14f40a9b39052cbb56489dffb 100644 (file)
@@ -19,12 +19,13 @@ class HomeController extends Controller
     /**
      * HomeController constructor.
      * @param ActivityService $activityService
-     * @param BookRepo $bookRepo
+     * @param BookRepo        $bookRepo
      */
     public function __construct(ActivityService $activityService, BookRepo $bookRepo)
     {
         $this->activityService = $activityService;
         $this->bookRepo = $bookRepo;
+        parent::__construct();
     }