Code Style fix

This commit is contained in:
Stéphane Goetz 2016-07-29 23:28:45 +02:00
bovenliggende 996d58277a
commit a6783d41e8
1 gewijzigde bestanden met toevoegingen van 6 en 6 verwijderingen

Bestand weergeven

@ -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 */