Skip to content

Commit 78207c5

Browse files
committed
Ran php-cs-fixer
1 parent acbc609 commit 78207c5

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/Rejection.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public static function withAuthentication(
7373
public function reject(object|array $rejection, ?\Throwable $exception = null): void
7474
{
7575
$this->channel->publish(
76-
json_encode([
76+
\json_encode([
7777
'item' => $rejection,
7878
'exception' => $exception,
7979
'step' => $this->stepUuid,
@@ -89,7 +89,7 @@ public function reject(object|array $rejection, ?\Throwable $exception = null):
8989
public function rejectWithReason(object|array $rejection, string $reason, ?\Throwable $exception = null): void
9090
{
9191
$this->channel->publish(
92-
json_encode([
92+
\json_encode([
9393
'item' => $rejection,
9494
'reason' => $reason,
9595
'exception' => $exception,

src/State.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ public function __construct(
1616
private readonly StateManager $manager,
1717
private readonly string $stepCode,
1818
private readonly string $stepLabel,
19-
) {}
19+
) {
20+
}
2021

2122
public function accept(int $count = 1): void
2223
{

0 commit comments

Comments
 (0)