Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Nov 27, 2020. It is now read-only.

Commit 096c108

Browse files
committed
feature #727 Added a new services.yml file to comply with Symfony Best Practices (javiereguiluz)
This PR was squashed before being merged into the 2.6-dev branch (closes #727). Discussion ---------- Added a new services.yml file to comply with Symfony Best Practices | Q | A | ------------- | --- | Bug fix? | no | New feature? | yes | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | - | License | MIT | Doc PR | - Commits ------- 55649c4 Added a new services.yml file to comply with Symfony Best Practices
2 parents 87539d1 + 55649c4 commit 096c108

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

app/config/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
imports:
22
- { resource: parameters.yml }
33
- { resource: security.yml }
4+
- { resource: services.yml }
45

56
framework:
67
#esi: ~

app/config/services.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Learn more about services, parameters and containers at
2+
# http://symfony.com/doc/current/book/service_container.html
3+
parameters:
4+
# parameter_name: value
5+
6+
services:
7+
# service_name:
8+
# class: AppBundle\Directory\ClassName
9+
# arguments: ["@another_service_name", "plain_value", "%parameter_name%"]

0 commit comments

Comments
 (0)