From 635ee3cfdacc1171b27d285a97f80e51517dd50d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Mo=CC=88ller?= Date: Sat, 26 Sep 2015 22:17:57 +0200 Subject: [PATCH 1/2] Fix: Make sure to fix *.php.dist, too --- .php_cs | 1 + 1 file changed, 1 insertion(+) diff --git a/.php_cs b/.php_cs index a414c04f..1c79e693 100644 --- a/.php_cs +++ b/.php_cs @@ -5,6 +5,7 @@ $config = new Symfony\CS\Config\Config(); $config->getFinder() ->exclude('data') ->exclude('puphpet') + ->name('*.php.dist') ->in(__DIR__) ; From 60501022205132f2cd3ab87953f02eb8cd1d5db2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Mo=CC=88ller?= Date: Sat, 26 Sep 2015 22:18:19 +0200 Subject: [PATCH 2/2] Fix: Run 'make cs' --- config/autoload/cache.local.php.dist | 6 +++--- config/autoload/github.local.php.dist | 6 +++--- config/development.config.php.dist | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/config/autoload/cache.local.php.dist b/config/autoload/cache.local.php.dist index c88c962e..1e0d9b5e 100644 --- a/config/autoload/cache.local.php.dist +++ b/config/autoload/cache.local.php.dist @@ -14,9 +14,9 @@ return [ ], 'plugins' => [ 'exception_handler' => ['throw_exceptions' => true], - 'serializer' - ] + 'serializer', + ], ], 'cache_key' => 'github_api', ], -]; \ No newline at end of file +]; diff --git a/config/autoload/github.local.php.dist b/config/autoload/github.local.php.dist index 8a7f92f7..4f1a9939 100644 --- a/config/autoload/github.local.php.dist +++ b/config/autoload/github.local.php.dist @@ -8,7 +8,7 @@ $settings = [ /** * Github Client id - * + * * Please specify the client id provided by github * * You can register a new application at: @@ -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' => '', ]; /** diff --git a/config/development.config.php.dist b/config/development.config.php.dist index 382e1e3e..f1d11feb 100644 --- a/config/development.config.php.dist +++ b/config/development.config.php.dist @@ -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'], + ], ];