From d0111607a9a3a4a895f3a0a19252f8a422133360 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20R=C3=B6hrig?= Date: Tue, 1 Oct 2019 22:34:41 +0200 Subject: [PATCH] Added the RecipeService as a field To stop PHPStorm from complaining. --- lib/Controller/RecipeController.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/Controller/RecipeController.php b/lib/Controller/RecipeController.php index 03f83790..d5fead76 100644 --- a/lib/Controller/RecipeController.php +++ b/lib/Controller/RecipeController.php @@ -14,6 +14,10 @@ use OCA\Cookbook\Service\RecipeService; class RecipeController extends Controller { private $userId; + /** + * @var RecipeService + */ + private $service; public function __construct($AppName, IDBConnection $db, IRootFolder $root, IRequest $request, IConfig $config, $UserId){ parent::__construct($AppName, $request);