You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TYPO3 V 12.4.20
t3sbs/t3sbootstrap (v5.3.15)
PHP 8.2
When calling the scheduler I get
[CRITICAL] request="604d2908e4a66" component="TYPO3.CMS.Core.Error.DebugExceptionHandler": Core: Exception handler (WEB: BE): TYPO3\CMS\Core\Error\Exception, code #1476107295, file /var/www/html/vendor/typo3/cms-core/Classes/Error/ErrorHandler.php, line 138: PHP Runtime Deprecation Notice: Creation of dynamic property T3SBS\T3sbootstrap\Command\CustomScss::$configurationManager is deprecated in /var/www/html/vendor/t3sbs/t3sbootstrap/Classes/Command/CustomScss.php line 35- Exception: PHP Runtime Deprecation Notice: Creation of dynamic property T3SBS\T3sbootstrap\Command\CustomScss::$configurationManager is deprecated in /var/www/html/vendor/t3sbs/t3sbootstrap/Classes/Command/CustomScss.php line 35, in file /var/www/html/vendor/typo3/cms-core/Classes/Error/ErrorHandler.php:138 - {"mode":"WEB","application_mode":"BE","exception_class":"TYPO3\CMS\Core\Error\Exception","exception_code":1476107295,"file":"/var/www/html/vendor/typo3/cms-core/Classes/Error/ErrorHandler.php","line":138,"message":"PHP Runtime Deprecation Notice: Creation of dynamic property T3SBS\T3sbootstrap\Command\CustomScss::$configurationManager is deprecated in /var/www/html/vendor/t3sbs/t3sbootstrap/Classes/Command/CustomScss.php line 35"
Can be fixed by using PHP 8.1 or replacing the lines 27-36 in t3sbs/t3sbootstrap/Classes/Command/CustomScss.php
public function initializeAction()
{
parent::initializeAction();
}
public function injectConfigurationManager(ConfigurationManagerInterface $configurationManager)
{
$this->configurationManager = $configurationManager;
}
by
/**
* @var ConfigurationManagerInterface
*/
protected ConfigurationManagerInterface $configurationManager;
public function initializeAction()
{
parent::initializeAction();
}
public function injectConfigurationManager(ConfigurationManagerInterface $configurationManager)
{
$this->configurationManager = $configurationManager;
}
The text was updated successfully, but these errors were encountered:
TYPO3 V 12.4.20
t3sbs/t3sbootstrap (v5.3.15)
PHP 8.2
When calling the scheduler I get
[CRITICAL] request="604d2908e4a66" component="TYPO3.CMS.Core.Error.DebugExceptionHandler": Core: Exception handler (WEB: BE): TYPO3\CMS\Core\Error\Exception, code #1476107295, file /var/www/html/vendor/typo3/cms-core/Classes/Error/ErrorHandler.php, line 138: PHP Runtime Deprecation Notice: Creation of dynamic property T3SBS\T3sbootstrap\Command\CustomScss::$configurationManager is deprecated in /var/www/html/vendor/t3sbs/t3sbootstrap/Classes/Command/CustomScss.php line 35- Exception: PHP Runtime Deprecation Notice: Creation of dynamic property T3SBS\T3sbootstrap\Command\CustomScss::$configurationManager is deprecated in /var/www/html/vendor/t3sbs/t3sbootstrap/Classes/Command/CustomScss.php line 35, in file /var/www/html/vendor/typo3/cms-core/Classes/Error/ErrorHandler.php:138 - {"mode":"WEB","application_mode":"BE","exception_class":"TYPO3\CMS\Core\Error\Exception","exception_code":1476107295,"file":"/var/www/html/vendor/typo3/cms-core/Classes/Error/ErrorHandler.php","line":138,"message":"PHP Runtime Deprecation Notice: Creation of dynamic property T3SBS\T3sbootstrap\Command\CustomScss::$configurationManager is deprecated in /var/www/html/vendor/t3sbs/t3sbootstrap/Classes/Command/CustomScss.php line 35"
Can be fixed by using PHP 8.1 or replacing the lines 27-36 in t3sbs/t3sbootstrap/Classes/Command/CustomScss.php
by
The text was updated successfully, but these errors were encountered: