This repository has been archived by the owner on Jan 10, 2023. It is now read-only.
Exclude arguments are being handled as prefixes #187
Labels
bug
Indicates an unexpected problem or unintended behavior
In version 6.0.1 exclude arguments are being handles as prefixes while getting the files.
The following call is made in Application.php::55:
$files = (new Facade)->getFilesAsArray( $arguments->directories(), $arguments->suffixes(), $arguments->exclude() );
While Facade::getFilesAsArray() expects the following parameters:
public function getFilesAsArray($paths, $suffixes = '', $prefixes = '', array $exclude = [], bool $commonPath = false): array
The text was updated successfully, but these errors were encountered: