From b92e60fa26fef782ba8219a25b8e3c6a48651c12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Thu, 21 Nov 2024 22:14:39 +0100 Subject: [PATCH] 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. --- .php-cs-fixer.dist.php | 2 +- {resource => resources}/header.txt | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename {resource => resources}/header.txt (100%) diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php index 4a70e81e7..49b6f1a07 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -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); diff --git a/resource/header.txt b/resources/header.txt similarity index 100% rename from resource/header.txt rename to resources/header.txt