-
-
Notifications
You must be signed in to change notification settings - Fork 0
CandidateProvider
github-actions edited this page Apr 11, 2026
·
1 revision
Provides the canonical list of candidate paths for export-ignore rules.
This class defines the baseline set of files and directories that should typically be excluded from Composer package archives. The list is organized into folders and files groups for deterministic ordering.
- Full name:
\FastForward\DevTools\GitAttributes\CandidateProvider - This class is marked as final and can't be subclassed
- This class implements:
\FastForward\DevTools\GitAttributes\CandidateProviderInterface - This class is a Final class
Returns the list of folder paths that are candidates for export-ignore.
public folders(): list<string>Return Value:
Folders that are candidates for export-ignore
Returns the list of file paths that are candidates for export-ignore.
public files(): list<string>Return Value:
Files that are candidates for export-ignore
Returns all candidates as a combined list with folders first, then files.
public all(): list<string>Return Value:
All candidates in deterministic order