Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2022-07-15 00:44:15 +0300
committerVinicius Reis <vinicius.reis@nextcloud.com>2022-07-18 18:46:23 +0300
commit8b3a4d27c0869fc168443b3791fbfa28d766ee12 (patch)
tree262b09d0286c3e379d3e584a28eaa46d4f233648 /lib/Command
parent7739cab6534e0211df495e96b7d4ec34a8582fb4 (diff)
More typing and remove unused property
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'lib/Command')
-rw-r--r--lib/Command/ResetDocument.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Command/ResetDocument.php b/lib/Command/ResetDocument.php
index 6e972f08e..1fb18ecf5 100644
--- a/lib/Command/ResetDocument.php
+++ b/lib/Command/ResetDocument.php
@@ -33,10 +33,10 @@ use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class ResetDocument extends Command {
- protected $documentService;
- protected $documentMapper;
- protected $stepMapper;
- protected $sessionMapper;
+ protected DocumentService $documentService;
+ protected DocumentMapper $documentMapper;
+ protected StepMapper $stepMapper;
+ protected SessionMapper $sessionMapper;
public function __construct(DocumentService $documentService, DocumentMapper $documentMapper, StepMapper $stepMapper, SessionMapper $sessionMapper) {
parent::__construct();