Skip to content

Commit

Permalink
Fix error in exclusion configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosas committed Nov 30, 2019
1 parent 3765fd7 commit 88cc7d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ private static function process(array $config)
{
self::$srcPath = $config['src']['path'] ?? '';
self::$srcIncluded = $config['src']['include'] ?? [];
self::$srcExcluded = $config['src']['include'] ?? [];
self::$srcExcluded = $config['src']['exclude'] ?? [];
self::$testsPath = $config['tests']['path'] ?? '';
self::$verbosity = (int) ($config['options']['verbosity'] ?? 1);
self::$dryRun = (bool) ($config['options']['dry-run'] ?? false);
Expand Down

0 comments on commit 88cc7d3

Please sign in to comment.