From 7469664e92b3131bf24a816d8eebb96ac9c0c28e Mon Sep 17 00:00:00 2001 From: Michele Locati Date: Fri, 11 Dec 2020 18:20:19 +0100 Subject: [PATCH] Check the PHP Coding Style of files in the scripts dir --- .php_cs | 1 + 1 file changed, 1 insertion(+) diff --git a/.php_cs b/.php_cs index 1c408b6..465b06f 100644 --- a/.php_cs +++ b/.php_cs @@ -325,6 +325,7 @@ return PhpCsFixer\Config::create() ->exclude('vendor') ->in(__DIR__) ->name('.php_cs') + ->append(glob(__DIR__ . '/scripts/*')) ->append(glob(__DIR__ . '/scripts/tests/*')) ) ;