Skip to content

Commit 877f134

Browse files
committed
[BUG] Removed var type declaration in Command class to gain backwards compatibility for php7
1 parent f13c72c commit 877f134

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

Classes/Command/DispatchCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ class DispatchCommand extends Command
4444
/**
4545
* @var \Symfony\Component\Console\Input\InputInterface
4646
*/
47-
protected InputInterface $input;
47+
protected $input;
4848
/**
4949
* @var \TYPO3\CMS\Core\Registry
5050
*/
51-
protected \TYPO3\CMS\Core\Registry $registry;
51+
protected $registry;
5252

5353

5454
/**

Classes/Command/Report/SendCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ class SendCommand extends Command
4444
/**
4545
* @var \Symfony\Component\Console\Input\InputInterface
4646
*/
47-
protected InputInterface $input;
47+
protected $input;
4848
/**
4949
* @var \TYPO3\CMS\Core\Registry
5050
*/
51-
protected \TYPO3\CMS\Core\Registry $registry;
51+
protected $registry;
5252

5353
/**
5454
* @var \Datamints\DatamintsErrorReport\Services\MailService

Documentation/ChangeLog/Index.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ Change log
77
==========
88

99

10+
Version 1.0.5
11+
-------------
12+
13+
[BUG] Removed var type declaration in Command class to gain backwards compatibility for php7
14+
1015
Version 1.0.4
1116
-------------
1217

ext_emconf.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
'author_email' => '[email protected]',
99
'state' => 'stable',
1010
'clearCacheOnLoad' => 1,
11-
'version' => '1.0.4',
11+
'version' => '1.0.5',
1212
'constraints' => [
1313
'depends' => [
1414
'typo3' => '10.4.0-11.9.99',

0 commit comments

Comments
 (0)