* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Bundle\MakerBundle\DependencyInjection\CompilerPass; use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface; use Symfony\Component\DependencyInjection\ContainerBuilder; class DoctrineAttributesCheckPass implements CompilerPassInterface { public function process(ContainerBuilder $container): void { $container->setParameter( 'maker.compatible_check.doctrine.supports_attributes', $container->hasParameter('doctrine.orm.metadata.attribute.class') ); } }