Skip to content

Commit

Permalink
Code Style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
onigoetz committed Jul 29, 2016
1 parent 996d582 commit a6783d4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions libs/Compiler.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public function compile($pharFile = 'daux.phar')
$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')
Expand All @@ -76,11 +76,11 @@ public function compile($pharFile = 'daux.phar')
->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 */
Expand Down

0 comments on commit a6783d4

Please sign in to comment.