mirror of
https://github.com/symfony/recipes.git
synced 2026-09-12 15:46:37 +03:00
30 lines
794 B
YAML
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']
|