File tree Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 22
33## NOT RELEASED
44
5+ ### Changed
6+
7+ - Apply no CodingStandard from latest php-cs-fixer.
8+
59## 1.4.0
610
711### Added
Original file line number Diff line number Diff line change @@ -27,8 +27,8 @@ final class DominantLanguage
2727
2828 /**
2929 * @param array{
30- * LanguageCode?: null| string,
31- * Score?: null| float,
30+ * LanguageCode?: string|null ,
31+ * Score?: float|null ,
3232 * } $input
3333 */
3434 public function __construct (array $ input )
@@ -39,8 +39,8 @@ public function __construct(array $input)
3939
4040 /**
4141 * @param array{
42- * LanguageCode?: null| string,
43- * Score?: null| float,
42+ * LanguageCode?: string|null ,
43+ * Score?: float|null ,
4444 * }|DominantLanguage $input
4545 */
4646 public static function create ($ input ): self
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ final class InvalidRequestDetail
2828
2929 /**
3030 * @param array{
31- * Reason?: null| InvalidRequestDetailReason::*,
31+ * Reason?: InvalidRequestDetailReason::*|null ,
3232 * } $input
3333 */
3434 public function __construct (array $ input )
@@ -38,7 +38,7 @@ public function __construct(array $input)
3838
3939 /**
4040 * @param array{
41- * Reason?: null| InvalidRequestDetailReason::*,
41+ * Reason?: InvalidRequestDetailReason::*|null ,
4242 * }|InvalidRequestDetail $input
4343 */
4444 public static function create ($ input ): self
You can’t perform that action at this time.
0 commit comments