‪TYPO3CMS  10.4
Services.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 namespace ‪TYPO3\CMS\Dashboard;
5 
6 use Symfony\Component\DependencyInjection\ContainerBuilder;
7 use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
8 
9 return function (ContainerConfigurator $container, ContainerBuilder $containerBuilder) {
10  $containerBuilder->addCompilerPass(new DependencyInjection\DashboardWidgetPass('dashboard.widget'));
11 };
‪TYPO3\CMS\Dashboard