Rename header folder and update path in configuration

Renamed the folder 'resource' to 'resources' to better reflect its contents. Updated the file path in the PHP CS Fixer configuration accordingly to ensure continued functionality.
This commit is contained in:
2024-11-21 22:14:39 +01:00
parent 16cd63ec84
commit b92e60fa26
2 changed files with 1 additions and 1 deletions

View File

@@ -120,6 +120,6 @@ $rules = array_merge(
$untilFullSwitchToPhp8,
);
$rules['header_comment']['header'] = trim(file_get_contents(__DIR__.'/resource/header.txt'));
$rules['header_comment']['header'] = trim(file_get_contents(__DIR__.'/resources/header.txt'));
return $config->setRules($rules);