vendor/zenstruck/schedule-bundle/src/ZenstruckScheduleBundle.php line 22
<?php/** This file is part of the zenstruck/schedule-bundle package.** (c) Kevin Bond <kevinbond@gmail.com>** For the full copyright and license information, please view the LICENSE* file that was distributed with this source code.*/namespace Zenstruck\ScheduleBundle;use Symfony\Component\DependencyInjection\ContainerBuilder;use Symfony\Component\HttpKernel\Bundle\Bundle;use Zenstruck\ScheduleBundle\DependencyInjection\Compiler\ScheduleBuilderKernelPass;use Zenstruck\ScheduleBundle\DependencyInjection\Compiler\ScheduledServiceBuilderPass;/*** @author Kevin Bond <kevinbond@gmail.com>*/final class ZenstruckScheduleBundle extends Bundle{public function build(ContainerBuilder $container): void{parent::build($container);$container->addCompilerPass(new ScheduleBuilderKernelPass());$container->addCompilerPass(new ScheduledServiceBuilderPass());}}