Skip to content

Commit

Permalink
[BUG] Removed var type declaration in Command class to gain backwards…
Browse files Browse the repository at this point in the history
… compatibility for php7
  • Loading branch information
sapphex2 committed Mar 4, 2022
1 parent f13c72c commit 877f134
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Classes/Command/DispatchCommand.php
Expand Up @@ -44,11 +44,11 @@ class DispatchCommand extends Command
/**
* @var \Symfony\Component\Console\Input\InputInterface
*/
protected InputInterface $input;
protected $input;
/**
* @var \TYPO3\CMS\Core\Registry
*/
protected \TYPO3\CMS\Core\Registry $registry;
protected $registry;


/**
Expand Down
4 changes: 2 additions & 2 deletions Classes/Command/Report/SendCommand.php
Expand Up @@ -44,11 +44,11 @@ class SendCommand extends Command
/**
* @var \Symfony\Component\Console\Input\InputInterface
*/
protected InputInterface $input;
protected $input;
/**
* @var \TYPO3\CMS\Core\Registry
*/
protected \TYPO3\CMS\Core\Registry $registry;
protected $registry;

/**
* @var \Datamints\DatamintsErrorReport\Services\MailService
Expand Down
5 changes: 5 additions & 0 deletions Documentation/ChangeLog/Index.rst
Expand Up @@ -7,6 +7,11 @@ Change log
==========


Version 1.0.5
-------------

[BUG] Removed var type declaration in Command class to gain backwards compatibility for php7

Version 1.0.4
-------------

Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Expand Up @@ -8,7 +8,7 @@
'author_email' => 'm.weisgerber@datamints.com',
'state' => 'stable',
'clearCacheOnLoad' => 1,
'version' => '1.0.4',
'version' => '1.0.5',
'constraints' => [
'depends' => [
'typo3' => '10.4.0-11.9.99',
Expand Down

0 comments on commit 877f134

Please sign in to comment.