Skip to content

Commit

Permalink
Generate the property type for generated objects (#1467)
Browse files Browse the repository at this point in the history
  • Loading branch information
stof committed Jul 3, 2023
1 parent c623fa5 commit ba0ca5a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Result/PutTraceSegmentsResult.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ class PutTraceSegmentsResult extends Result
{
/**
* Segments that failed processing.
*
* @var UnprocessedTraceSegment[]
*/
private $unprocessedTraceSegments;

Expand Down
6 changes: 6 additions & 0 deletions src/ValueObject/UnprocessedTraceSegment.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,22 @@ final class UnprocessedTraceSegment
{
/**
* The segment's ID.
*
* @var string|null
*/
private $id;

/**
* The error that caused processing to fail.
*
* @var string|null
*/
private $errorCode;

/**
* The error message.
*
* @var string|null
*/
private $message;

Expand Down

0 comments on commit ba0ca5a

Please sign in to comment.