diff --git a/CHANGELOG.md b/CHANGELOG.md index 680c9ef..1cb95fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog All notable changes to this project will be documented in this file. +## 1.2.3 - 2024-08-23 +### Changed +* `cast_spaces`: No space between cast and variable + ## 1.2.2 - 2024-08-23 ### Added * `cast_spaces`: A single space between cast and variable diff --git a/src/Config.php b/src/Config.php index 447879e..73b9baf 100644 --- a/src/Config.php +++ b/src/Config.php @@ -24,7 +24,7 @@ public function getRules() : array { ], 'blank_line_after_namespace' => true, 'blank_line_after_opening_tag' => true, - 'cast_spaces' => ['space' => 'single'], + 'cast_spaces' => ['space' => 'none'], 'curly_braces_position' => [ 'classes_opening_brace' => 'same_line', 'functions_opening_brace' => 'same_line',