You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 10, 2023. It is now read-only.
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
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