Skip to content

Commit

Permalink
fix: param descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
lukmzig committed Dec 9, 2024
1 parent 5ae02e2 commit a9b3c69
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Workflow/Schema/SubmitAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ public function __construct(
example: WorkflowActionTypes::TRANSITION_ACTION
)]
private string $actionType,
#[Property(description: 'id of the element', type: 'integer', example: 50)]
#[Property(description: 'Id of the element', type: 'integer', example: 50)]
private int $elementId,
#[Property(description: 'type of the element', type: 'string', example: ElementTypes::TYPE_DATA_OBJECT)]
#[Property(description: 'Type of the element', type: 'string', example: ElementTypes::TYPE_DATA_OBJECT)]
private string $elementType,
#[Property(description: 'id of the workflow', type: 'string', example: 'my_first_workflow')]
#[Property(description: 'Id of the workflow', type: 'string', example: 'my_first_workflow')]
private string $workflowId,
#[Property(description: 'id of the transition', type: 'string', example: 'start_workflow')]
#[Property(description: 'Id of the transition', type: 'string', example: 'start_workflow')]
private string $transitionId,
#[Property(
description: 'workflowOptions',
Expand Down

0 comments on commit a9b3c69

Please sign in to comment.