Skip to content

Commit

Permalink
[BUGFIX] Revert modification of method by TYPO3 rector
Browse files Browse the repository at this point in the history
  • Loading branch information
tinzog committed Jan 13, 2025
1 parent 7177ccb commit 466df2e
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ class ExcludedTablesService
* @codeCoverageIgnore
* @noinspection PhpUnused
*/
public function __construct(\In2code\In2publishCore\Component\ConfigContainer\ConfigContainer $excludeRelatedTables)
{
$this->excludeRelatedTables = $excludeRelatedTables;
public function injectConfigContainer(
\In2code\In2publishCore\Component\ConfigContainer\ConfigContainer $configContainer
): void {
$this->excludeRelatedTables = $configContainer->get('excludeRelatedTables');
}

/**
Expand Down

0 comments on commit 466df2e

Please sign in to comment.