Fix on php 7.3

This commit is contained in:
Matias De lellis
2021-03-26 10:48:47 -03:00
parent 6bfdd955b1
commit f299002108
2 changed files with 2 additions and 1 deletions

View File

@@ -51,7 +51,7 @@ class FileService {
private $timeFactory; private $timeFactory;
/** @var SettingsService */ /** @var SettingsService */
private SettingsService $settingsService; private $settingsService;
public function __construct($userId, public function __construct($userId,
IRootFolder $rootFolder, IRootFolder $rootFolder,

View File

@@ -41,6 +41,7 @@ use OCA\QuickNotes\Db\Tag;
use OCA\QuickNotes\Db\TagMapper; use OCA\QuickNotes\Db\TagMapper;
use OCA\QuickNotes\Service\FileService; use OCA\QuickNotes\Service\FileService;
use OCA\QuickNotes\Service\SettingsService;
class NoteService { class NoteService {