Skip to content

Commit 9b16220

Browse files
authored
Bump php-cs-fixer to version 3.87.x (#1942)
1 parent 41909f5 commit 9b16220

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
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

src/ValueObject/UnprocessedTraceSegment.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ final class UnprocessedTraceSegment
3030

3131
/**
3232
* @param array{
33-
* Id?: null|string,
34-
* ErrorCode?: null|string,
35-
* Message?: null|string,
33+
* Id?: string|null,
34+
* ErrorCode?: string|null,
35+
* Message?: string|null,
3636
* } $input
3737
*/
3838
public function __construct(array $input)
@@ -44,9 +44,9 @@ public function __construct(array $input)
4444

4545
/**
4646
* @param array{
47-
* Id?: null|string,
48-
* ErrorCode?: null|string,
49-
* Message?: null|string,
47+
* Id?: string|null,
48+
* ErrorCode?: string|null,
49+
* Message?: string|null,
5050
* }|UnprocessedTraceSegment $input
5151
*/
5252
public static function create($input): self

0 commit comments

Comments
 (0)