Skip to content
This repository was archived by the owner on May 1, 2019. It is now read-only.

Commit 9d8d597

Browse files
committed
Merge pull request #503 from localheinz/fix/php-cs-fixer
Fix: Make sure to fix *.php.dist, too
2 parents 79d36d2 + 6050102 commit 9d8d597

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

.php_cs

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ $config = new Symfony\CS\Config\Config();
55
$config->getFinder()
66
->exclude('data')
77
->exclude('puphpet')
8+
->name('*.php.dist')
89
->in(__DIR__)
910
;
1011

config/autoload/cache.local.php.dist

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ return [
1414
],
1515
'plugins' => [
1616
'exception_handler' => ['throw_exceptions' => true],
17-
'serializer'
18-
]
17+
'serializer',
18+
],
1919
],
2020
'cache_key' => 'github_api',
2121
],
22-
];
22+
];

config/autoload/github.local.php.dist

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
$settings = [
99
/**
1010
* Github Client id
11-
*
11+
*
1212
* Please specify the client id provided by github
1313
*
1414
* You can register a new application at:
@@ -17,13 +17,13 @@ $settings = [
1717
'github_client_id' => '',
1818
/**
1919
* Github Secret
20-
*
20+
*
2121
* Please specify the secret provided by github
2222
*
2323
* You can register a new application at:
2424
* https://github.com/settings/applications/new
2525
*/
26-
'github_secret' =>'',
26+
'github_secret' => '',
2727
];
2828

2929
/**

config/development.config.php.dist

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ return [
1212
],
1313
// development time configuration globbing
1414
'module_listener_options' => [
15-
'config_glob_paths' => ['config/autoload/{,*.}{global,local}-development.php']
16-
]
15+
'config_glob_paths' => ['config/autoload/{,*.}{global,local}-development.php'],
16+
],
1717
];

0 commit comments

Comments
 (0)