Code Style fix

Cette révision appartient à :
Stéphane Goetz 2016-07-29 23:28:45 +02:00
Parent 996d58277a
révision a6783d41e8
1 fichiers modifiés avec 6 ajouts et 6 suppressions

Voir le fichier

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