From 08890ea6303b1d85dd1832b67422614aa6331bc4 Mon Sep 17 00:00:00 2001 From: rango Date: Thu, 7 May 2026 18:37:49 +0800 Subject: [PATCH] =?UTF-8?q?style(config):=20=E6=9B=B4=E6=96=B0PHP=E4=BB=A3?= =?UTF-8?q?=E7=A0=81=E6=A0=B7=E5=BC=8F=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将单引号设置为false以禁用单引号强制规则 --- .php-cs-fixer.dist.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php index 11fdaf94..8bd766f2 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -53,7 +53,7 @@ return (new PhpCsFixer\Config()) 'single_line_comment_style' => ['comment_types' => []], 'single_line_comment_spacing' => false, 'single_line_empty_body' => false, - 'single_quote' => true, + 'single_quote' => false, 'standardize_increment' => false, 'standardize_not_equals' => true, 'yoda_style' => ['always_move_variable' => false, 'equal' => false, 'identical' => false],