Project

General

Profile

Actions

Bug #102092

closed

Cannot autowire service "TYPO3\CMS\Core\Routing\PageArguments"

Added by John Miller 11 months ago. Updated 10 months ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
System/Bootstrap/Configuration
Target version:
-
Start date:
2023-10-05
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
12
PHP Version:
8.2
Tags:
Complexity:
Is Regression:
Sprint Focus:

Description

Just updated to the latest TYPO3 CMS dev-main.

Container builder throws

(1/1) Symfony\Component\DependencyInjection\Exception\RuntimeException

Cannot autowire service "TYPO3\CMS\Core\Routing\PageArguments": argument "$pageId" of method "__construct()" is type-hinted "int", you should configure its value explicitly.

Am not autowiring it in my extension and have no third-party extensions.

Tried both 12.4-dev & dev-main . See screenshots. Same result.

Problem
Autowiring \TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController doesn't work. I had autowired TypoScriptFrontendController class in a constructor in one file and in a property in a separate file. The TypoScriptFrontendController class requires the PageArguments class in its constructor, which in turn, is autowired but has scalar values for its constructor. Same goes for the two more parameters in the TypoScriptFrontendController .

Solution
Avoid autowiring \TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController . Instead use, the $GLOBALS['TSFE'] .

Sentiments
I wish there was a way to easily get ready-made services straight from di container instead of using complex methods such as the Aspects bag or globals. Also wish that there be single points of constructing objects in TYPO3. In chasing down the PageArguments problem, I realized that it is constructed from multiple places. It's insane, especially for debugging and efficiency reasons. But that's just me.


Files

PageArgumentsSymphonyException.png (108 KB) PageArgumentsSymphonyException.png The exception John Miller, 2023-10-05 06:29
TYPO3VersionUsed12.png (157 KB) TYPO3VersionUsed12.png Version 12.4 setup John Miller, 2023-10-05 06:29
TYPO3VersionUsedDevMain.png (151 KB) TYPO3VersionUsedDevMain.png Version Dev-main setup John Miller, 2023-10-05 06:29
Actions

Also available in: Atom PDF