Added the RecipeService as a field

To stop PHPStorm from complaining.
This commit is contained in:
Daniel Röhrig 2019-10-01 22:34:41 +02:00
Родитель 3541582574
Коммит d0111607a9
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -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);