Code Style fix

This commit is contained in:
Stéphane Goetz 2016-07-29 23:28:45 +02:00
parent 996d58277a
commit a6783d41e8

View File

@ -59,7 +59,7 @@ class Compiler
$finder->files() $finder->files()
->ignoreVCS(true) ->ignoreVCS(true)
->exclude('Tests') ->exclude('Tests')
->notName("*.png") ->notName('*.png')
->in(__DIR__ . '/../vendor/guzzlehttp/guzzle/src') ->in(__DIR__ . '/../vendor/guzzlehttp/guzzle/src')
->in(__DIR__ . '/../vendor/guzzlehttp/promises/src') ->in(__DIR__ . '/../vendor/guzzlehttp/promises/src')
->in(__DIR__ . '/../vendor/guzzlehttp/psr7/src') ->in(__DIR__ . '/../vendor/guzzlehttp/psr7/src')
@ -76,11 +76,11 @@ class Compiler
->in(__DIR__ . '/../vendor/webuni/commonmark-table-extension/src'); ->in(__DIR__ . '/../vendor/webuni/commonmark-table-extension/src');
$excluded_files = [ $excluded_files = [
"README.md", 'README.md',
"composer.json", 'composer.json',
"LICENSE", 'LICENSE',
"CHANGELOG.md", 'CHANGELOG.md',
"phpunit.xml.dist", 'phpunit.xml.dist',
]; ];
/** @var \SplFileInfo $file */ /** @var \SplFileInfo $file */