File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
rules/CodingStyle/Rector/Encapsed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ private function shouldSkip(InterpolatedString $interpolatedString) : bool
104104 if (!$ part instanceof InterpolatedStringPart) {
105105 continue ;
106106 }
107- if ($ this ->containsASCIIChar ($ part ->value )) {
107+ if ($ this ->containsControlASCIIChar ($ part ->value )) {
108108 return \true;
109109 }
110110 }
@@ -197,7 +197,7 @@ private function createString(string $value) : String_
197197 $ kind = \strpos ($ value , "' " ) !== \false ? String_::KIND_DOUBLE_QUOTED : String_::KIND_SINGLE_QUOTED ;
198198 return new String_ ($ value , ['kind ' => $ kind ]);
199199 }
200- private function containsASCIIChar (string $ content ) : bool
200+ private function containsControlASCIIChar (string $ content ) : bool
201201 {
202202 return (bool ) Strings::match ($ content , '#[ \\x00- \\x08 \\x0B \\x0C \\x0E- \\x1F]# ' );
203203 }
Original file line number Diff line number Diff line change @@ -19,12 +19,12 @@ final class VersionResolver
1919 * @api
2020 * @var string
2121 */
22- public const PACKAGE_VERSION = '78382d288119533208cee5bd2827bdf0222f4064 ' ;
22+ public const PACKAGE_VERSION = '1964b34621401d02a7ca9b42130ab95b7c86bb59 ' ;
2323 /**
2424 * @api
2525 * @var string
2626 */
27- public const RELEASE_DATE = '2025-02-05 15:35:41 ' ;
27+ public const RELEASE_DATE = '2025-02-06 00:19:57 ' ;
2828 /**
2929 * @var int
3030 */
You can’t perform that action at this time.
0 commit comments