Skip to content

Commit a6ee157

Browse files
mh0rstfabarea
authored andcommitted
Update for TYPO3 v10
1 parent fad97d2 commit a6ee157

File tree

8 files changed

+3
-8
lines changed

8 files changed

+3
-8
lines changed

Classes/Backend/Wizard.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function proc($wizardItems)
3535
}
3636

3737
/**
38-
* @return \TYPO3\CMS\Lang\LanguageService
38+
* @return \TYPO3\CMS\Core\Localization\LanguageService
3939
*/
4040
protected function getLanguageService()
4141
{

Classes/ViewHelpers/Item/ContentViewHelper.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ class ContentViewHelper extends AbstractViewHelper
2121
* Retrieve the SimplePie item from the context and return its "content".
2222
*
2323
* @return string
24-
* @throws \TYPO3\CMS\Fluid\Core\ViewHelper\Exception\InvalidVariableException
2524
*/
2625
public function render()
2726
{

Classes/ViewHelpers/Item/LinkViewHelper.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ class LinkViewHelper extends AbstractViewHelper
2121
* Retrieve the SimplePie item from the context and return its "link".
2222
*
2323
* @return string
24-
* @throws \TYPO3\CMS\Fluid\Core\ViewHelper\Exception\InvalidVariableException
2524
*/
2625
public function render()
2726
{

Classes/ViewHelpers/Item/TagViewHelper.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ public function initializeArguments()
3131
* @param string $namespace
3232
* @param string $tag
3333
* @return string
34-
* @throws \TYPO3\CMS\Fluid\Core\ViewHelper\Exception\InvalidVariableException
3534
*/
3635
public function render()
3736
{

Classes/ViewHelpers/Item/TagsViewHelper.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ public function initializeArguments()
2929
* Example of namespace: http://purl.org/dc/elements/1.1/
3030
*
3131
* @return array
32-
* @throws \TYPO3\CMS\Fluid\Core\ViewHelper\Exception\InvalidVariableException
3332
*/
3433
public function render()
3534
{

Classes/ViewHelpers/Item/TitleViewHelper.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ class TitleViewHelper extends AbstractViewHelper
2121
* Retrieve the SimplePie item from the context and return its "title".
2222
*
2323
* @return string
24-
* @throws \TYPO3\CMS\Fluid\Core\ViewHelper\Exception\InvalidVariableException
2524
*/
2625
public function render()
2726
{

ext_emconf.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
[
1717
'depends' =>
1818
[
19-
'typo3' => '9.5.0-9.5.99',
19+
'typo3' => '9.5.0-10.4.99',
2020
],
2121
'conflicts' =>
2222
[

ext_localconf.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
$TYPO3_CONF_VARS['SYS']['caching']['cacheConfigurations']['rssdisplay']['frontend'] = \TYPO3\CMS\Core\Cache\Frontend\StringFrontend::class;
3838
$TYPO3_CONF_VARS['SYS']['caching']['cacheConfigurations']['rssdisplay']['groups'] = ['all', 'rssdisplay'];
3939

40-
if (!\TYPO3\CMS\Core\Core\Bootstrap::usesComposerClassLoading()) {
40+
if (!\TYPO3\CMS\Core\Core\Environment::isComposerMode()) {
4141
# Install PSR-0-compatible class autoloader for SimplePie Library in Resources/PHP/SimplePie
4242
spl_autoload_register(function ($class) {
4343

0 commit comments

Comments
 (0)