From 314e2910e2877415f07654011b6f00a410a10a3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Fromme?= Date: Tue, 24 Jun 2025 09:14:08 +0200 Subject: [PATCH] chore: add php-cs-fixer config --- .php-cs-fixer.dist.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .php-cs-fixer.dist.php diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php new file mode 100644 index 0000000..5ec6fd2 --- /dev/null +++ b/.php-cs-fixer.dist.php @@ -0,0 +1,14 @@ +in(__DIR__) + ->exclude('var') +; + +return (new PhpCsFixer\Config()) + ->setRules([ + '@Symfony' => true, + '@DoctrineAnnotation' => true, + ]) + ->setFinder($finder) +;