Skip to content

Commit f0c7ef3

Browse files
authored
Fix for issue #41.
Pass the needed command line arguments to the `getFiles()` method.
1 parent c2037b7 commit f0c7ef3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PackageGenerator.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class PackageGenerator
66
public function execute($root = null)
77
{
88
$validator = new ComplianceValidator();
9-
$lines = $validator->getFiles();
9+
$lines = $validator->getFiles($root);
1010
$validatorResults = $validator->validate($lines);
1111
$files = $this->createFiles($validatorResults, $root);
1212
$this->outputResults($files);

0 commit comments

Comments
 (0)