From 3be1c20ac24706d7a5b554569298b6c43d7412d5 Mon Sep 17 00:00:00 2001 From: Devin Haska <2636402+wonderfulfrog@users.noreply.github.com> Date: Thu, 20 Mar 2025 09:22:02 -0700 Subject: [PATCH] feat: update php-cs-fixer config --- .config/php-cs-fixer/php-cs-fixer.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.config/php-cs-fixer/php-cs-fixer.php b/.config/php-cs-fixer/php-cs-fixer.php index a42cebb..bb7be38 100644 --- a/.config/php-cs-fixer/php-cs-fixer.php +++ b/.config/php-cs-fixer/php-cs-fixer.php @@ -12,6 +12,9 @@ $rules = [ 'no_leading_import_slash' => false, 'not_operator_with_space' => false, 'not_operator_with_successor_space' => false, + 'constant_case' => [ + 'case' => 'upper' + ], ]; $finder = (new PhpCsFixer\Finder())