Skip to content

Commit 549c14c

Browse files
committed
minor #51 Use single quotes in yaml files (yceruto)
This PR was merged into the master branch. Discussion ---------- Use single quotes in yaml files Commits ------- b39aa63 Use single quotes in yaml files
2 parents 0301b52 + b39aa63 commit 549c14c

File tree

12 files changed

+23
-23
lines changed

12 files changed

+23
-23
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
api_platform:
22
loader_paths:
3-
annotation: ["%kernel.project_dir%/src/Entity"]
3+
annotation: ['%kernel.project_dir%/src/Entity']
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
doctrine:
22
dbal:
3-
url: "%env(DATABASE_URL)%"
3+
url: '%env(DATABASE_URL)%'
44
orm:
5-
auto_generate_proxy_classes: "%kernel.debug%"
5+
auto_generate_proxy_classes: '%kernel.debug%'
66
naming_strategy: doctrine.orm.naming_strategy.underscore
77
auto_mapping: true
88
mappings:
99
App:
1010
is_bundle: false
1111
type: annotation
12-
dir: "%kernel.project_dir%/src/Entity"
13-
prefix: "App\\Entity\\"
12+
dir: '%kernel.project_dir%/src/Entity'
13+
prefix: 'App\Entity\'
1414
alias: App

easycorp/easy-log-handler/1.0/etc/packages/dev/easy-log-handler.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ services:
22
easycorp.easylog.handler:
33
class: EasyCorp\EasyLog\EasyLogHandler
44
public: false
5-
arguments: ["%kernel.logs_dir%/%kernel.environment%.log"]
5+
arguments: ['%kernel.logs_dir%/%kernel.environment%.log']
66

77
#// FIXME: How to add this configuration automatically without messing up with the monolog configuration?
88
#monolog:
99
# handlers:
1010
# buffered:
1111
# type: buffer
1212
# handler: easylog
13-
# channels: ["!event"]
13+
# channels: ['!event']
1414
# level: debug
1515
# easylog:
1616
# type: service
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
easy_admin_bundle:
2-
resource: "@EasyAdminBundle/Controller/AdminController.php"
2+
resource: '@EasyAdminBundle/Controller/AdminController.php'
33
prefix: /admin
44
type: annotation
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
lexik_jwt_authentication:
2-
private_key_path: "%env(JWT_PRIVATE_KEY_PATH)%"
3-
public_key_path: "%env(JWT_PUBLIC_KEY_PATH)%"
4-
pass_phrase: "%env(JWT_PASSPHRASE)%"
2+
private_key_path: '%env(JWT_PRIVATE_KEY_PATH)%'
3+
public_key_path: '%env(JWT_PUBLIC_KEY_PATH)%'
4+
pass_phrase: '%env(JWT_PASSPHRASE)%'

sensiolabs/security-checker/4.0/etc/packages/dev/security-checker.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ services:
55

66
sensio_distribution.security_checker.command:
77
class: SensioLabs\Security\Command\SecurityCheckerCommand
8-
arguments: ["@sensio_distribution.security_checker"]
8+
arguments: ['@sensio_distribution.security_checker']
99
tags:
1010
- { name: console.command }

symfony/framework-bundle/3.3/etc/packages/framework.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
framework:
2-
secret: "%env(APP_SECRET)%"
2+
secret: '%env(APP_SECRET)%'
33
#default_locale: en
44
#csrf_protection: null
55
#http_method_override: true
66
#trusted_hosts: null
77
# https://symfony.com/doc/current/reference/configuration/framework.html#handler-id
88
#session:
99
# handler_id: session.handler.native_file
10-
# save_path: "%kernel.project_dir%/var/sessions/%kernel.environment%"
10+
# save_path: '%kernel.project_dir%/var/sessions/%kernel.environment%'
1111
#esi: ~
1212
#fragments: ~
1313
php_errors:

symfony/framework-bundle/3.3/etc/routing.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#index:
22
# path: /
3-
# defaults: { _controller: "App\\Controller\\DefaultController::index" }
3+
# defaults: { _controller: 'App\Controller\DefaultController::index' }
44

55
# Depends on sensio/framework-extra-bundle:^3.0 and doctrine/annotations
66
#controllers:
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
swiftmailer:
2-
url: "%env(MAILER_URL)%"
3-
spool: { type: "memory" }
2+
url: '%env(MAILER_URL)%'
3+
spool: { type: 'memory' }
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
twig:
2-
paths: ["%kernel.project_dir%/templates"]
3-
debug: "%kernel.debug%"
4-
strict_variables: "%kernel.debug%"
2+
paths: ['%kernel.project_dir%/templates']
3+
debug: '%kernel.debug%'
4+
strict_variables: '%kernel.debug%'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
_errors:
2-
resource: "@TwigBundle/Resources/config/routing/errors.xml"
2+
resource: '@TwigBundle/Resources/config/routing/errors.xml'
33
prefix: /_errors
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
web_profiler_wdt:
2-
resource: "@WebProfilerBundle/Resources/config/routing/wdt.xml"
2+
resource: '@WebProfilerBundle/Resources/config/routing/wdt.xml'
33
prefix: /_wdt
44

55
web_profiler_profiler:
6-
resource: "@WebProfilerBundle/Resources/config/routing/profiler.xml"
6+
resource: '@WebProfilerBundle/Resources/config/routing/profiler.xml'
77
prefix: /_profiler

0 commit comments

Comments
 (0)