Code Style fix
This commit is contained in:
parent
996d58277a
commit
a6783d41e8
@ -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 */
|
||||||
|
Loading…
Reference in New Issue
Block a user