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

Fix: Make sure to fix *.php.dist, too #503

Merged
merged 2 commits into from
Oct 18, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .php_cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ $config = new Symfony\CS\Config\Config();
$config->getFinder()
->exclude('data')
->exclude('puphpet')
->name('*.php.dist')
->in(__DIR__)
;

Expand Down
6 changes: 3 additions & 3 deletions config/autoload/cache.local.php.dist
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ return [
],
'plugins' => [
'exception_handler' => ['throw_exceptions' => true],
'serializer'
]
'serializer',
],
],
'cache_key' => 'github_api',
],
];
];
6 changes: 3 additions & 3 deletions config/autoload/github.local.php.dist
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
$settings = [
/**
* Github Client id
*
*
* Please specify the client id provided by github
*
* You can register a new application at:
Expand All @@ -17,13 +17,13 @@ $settings = [
'github_client_id' => '',
/**
* Github Secret
*
*
* Please specify the secret provided by github
*
* You can register a new application at:
* https://github.com/settings/applications/new
*/
'github_secret' =>'',
'github_secret' => '',
];

/**
Expand Down
4 changes: 2 additions & 2 deletions config/development.config.php.dist
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ return [
],
// development time configuration globbing
'module_listener_options' => [
'config_glob_paths' => ['config/autoload/{,*.}{global,local}-development.php']
]
'config_glob_paths' => ['config/autoload/{,*.}{global,local}-development.php'],
],
];