Skip to content

Commit b90ba9c

Browse files
authored
Update php-cs-fixer (#1353)
1 parent 9c00809 commit b90ba9c

File tree

6 files changed

+13
-0
lines changed

6 files changed

+13
-0
lines changed

src/Input/SendTaskFailureInput.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ final class SendTaskFailureInput extends Input
1414
* or in the context object when a workflow enters a task state. See GetActivityTaskOutput$taskToken.
1515
*
1616
* @see https://docs.aws.amazon.com/step-functions/latest/dg/input-output-contextobject.html
17+
*
1718
* @required
1819
*
1920
* @var string|null
@@ -39,6 +40,7 @@ final class SendTaskFailureInput extends Input
3940
* taskToken?: string,
4041
* error?: string,
4142
* cause?: string,
43+
*
4244
* @region?: string,
4345
* } $input
4446
*/

src/Input/SendTaskHeartbeatInput.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ final class SendTaskHeartbeatInput extends Input
1414
* or in the context object when a workflow enters a task state. See GetActivityTaskOutput$taskToken.
1515
*
1616
* @see https://docs.aws.amazon.com/step-functions/latest/dg/input-output-contextobject.html
17+
*
1718
* @required
1819
*
1920
* @var string|null
@@ -23,6 +24,7 @@ final class SendTaskHeartbeatInput extends Input
2324
/**
2425
* @param array{
2526
* taskToken?: string,
27+
*
2628
* @region?: string,
2729
* } $input
2830
*/

src/Input/SendTaskSuccessInput.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ final class SendTaskSuccessInput extends Input
1414
* or in the context object when a workflow enters a task state. See GetActivityTaskOutput$taskToken.
1515
*
1616
* @see https://docs.aws.amazon.com/step-functions/latest/dg/input-output-contextobject.html
17+
*
1718
* @required
1819
*
1920
* @var string|null
@@ -34,6 +35,7 @@ final class SendTaskSuccessInput extends Input
3435
* @param array{
3536
* taskToken?: string,
3637
* output?: string,
38+
*
3739
* @region?: string,
3840
* } $input
3941
*/

src/Input/StartExecutionInput.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ final class StartExecutionInput extends Input
4949
* name?: string,
5050
* input?: string,
5151
* traceHeader?: string,
52+
*
5253
* @region?: string,
5354
* } $input
5455
*/

src/Input/StopExecutionInput.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ final class StopExecutionInput extends Input
3737
* executionArn?: string,
3838
* error?: string,
3939
* cause?: string,
40+
*
4041
* @region?: string,
4142
* } $input
4243
*/

src/StepFunctionsClient.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ class StepFunctionsClient extends AbstractApi
4545
* taskToken: string,
4646
* error?: string,
4747
* cause?: string,
48+
*
4849
* @region?: string,
4950
* }|SendTaskFailureInput $input
5051
*
@@ -80,6 +81,7 @@ public function sendTaskFailure($input): SendTaskFailureOutput
8081
*
8182
* @param array{
8283
* taskToken: string,
84+
*
8385
* @region?: string,
8486
* }|SendTaskHeartbeatInput $input
8587
*
@@ -110,6 +112,7 @@ public function sendTaskHeartbeat($input): SendTaskHeartbeatOutput
110112
* @param array{
111113
* taskToken: string,
112114
* output: string,
115+
*
113116
* @region?: string,
114117
* }|SendTaskSuccessInput $input
115118
*
@@ -143,6 +146,7 @@ public function sendTaskSuccess($input): SendTaskSuccessOutput
143146
* name?: string,
144147
* input?: string,
145148
* traceHeader?: string,
149+
*
146150
* @region?: string,
147151
* }|StartExecutionInput $input
148152
*
@@ -182,6 +186,7 @@ public function startExecution($input): StartExecutionOutput
182186
* executionArn: string,
183187
* error?: string,
184188
* cause?: string,
189+
*
185190
* @region?: string,
186191
* }|StopExecutionInput $input
187192
*

0 commit comments

Comments
 (0)