From a6783d41e8b255c9b59109e4fa0544e089ad95f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ste=CC=81phane=20Goetz?= Date: Fri, 29 Jul 2016 23:28:45 +0200 Subject: [PATCH] Code Style fix --- libs/Compiler.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/libs/Compiler.php b/libs/Compiler.php index 5d9d05b..1de650f 100644 --- a/libs/Compiler.php +++ b/libs/Compiler.php @@ -59,7 +59,7 @@ class Compiler $finder->files() ->ignoreVCS(true) ->exclude('Tests') - ->notName("*.png") + ->notName('*.png') ->in(__DIR__ . '/../vendor/guzzlehttp/guzzle/src') ->in(__DIR__ . '/../vendor/guzzlehttp/promises/src') ->in(__DIR__ . '/../vendor/guzzlehttp/psr7/src') @@ -76,11 +76,11 @@ class Compiler ->in(__DIR__ . '/../vendor/webuni/commonmark-table-extension/src'); $excluded_files = [ - "README.md", - "composer.json", - "LICENSE", - "CHANGELOG.md", - "phpunit.xml.dist", + 'README.md', + 'composer.json', + 'LICENSE', + 'CHANGELOG.md', + 'phpunit.xml.dist', ]; /** @var \SplFileInfo $file */