Files
symfony-flex-recipes/symfony/framework-bundle/etc/packages/app.yaml
T

30 lines
794 B
YAML

services:
_defaults:
autowire: by_id
public: false
_instanceof:
Symfony\Component\Console\Command\Command:
tags: ['console.command']
public: true
Twig_ExtensionInterface:
tags: ['twig.extension']
Symfony\Component\EventDispatcher\EventSubscriberInterface:
tags: ['kernel.event_subscriber']
Symfony\Component\Form\FormTypeInterface:
tags: ['form.type']
Symfony\Component\Security\Core\Authorization\VoterInterface:
tags: ['security.voter']
App\:
resource: '../../src/{Command,Form,EventSubscriber,Twig,Voter}'
App\Controller\:
resource: '../../src/Controller'
public: true
tags: ['controller.service_arguments']