Skip to content

Commit 13efe8f

Browse files
RhysLeesgithub-actions[bot]
authored andcommitted
Fix styling
1 parent e57d6aa commit 13efe8f

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

src/DTO/SendCodeAttempt.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public static function fake(
3535
return new static(
3636
time: $time ?? now(),
3737
channel: $channel ?? 'sms',
38-
attempt_sid: $attempt_sid ?? 'VL'.Str::random(32),
38+
attempt_sid: $attempt_sid ?? 'VL' . Str::random(32),
3939
);
4040
}
4141
}

src/DTO/VerificationCheck.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ public static function fake(
4848
?string $updated_at = null,
4949
): self {
5050
return new static(
51-
sid: $sid ?? 'VE'.Str::random(32),
52-
service_sid: $service_sid ?? 'VA'.Str::random(32),
53-
account_sid: $account_sid ?? 'AC'.Str::random(32),
51+
sid: $sid ?? 'VE' . Str::random(32),
52+
service_sid: $service_sid ?? 'VA' . Str::random(32),
53+
account_sid: $account_sid ?? 'AC' . Str::random(32),
5454
to: $to ?? '+41795555825',
5555
channel: $channel ?? 'sms',
5656
status: $status ?? 'approved',

src/DTO/VerificationStart.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,12 @@ public static function fake(
6060
?Collection $send_code_attempts = null,
6161
?string $url = null,
6262
): self {
63-
$service = 'VA'.Str::random(32);
63+
$service = 'VA' . Str::random(32);
6464

6565
return new static(
66-
sid: $sid ?? 'VE'.Str::random(32),
66+
sid: $sid ?? 'VE' . Str::random(32),
6767
service_sid: $service_sid ?? $service,
68-
account_sid: $account_sid ?? 'AC'.Str::random(32),
68+
account_sid: $account_sid ?? 'AC' . Str::random(32),
6969
to: $to ?? '+41795555825',
7070
channel: $channel ?? 'sms',
7171
status: $status ?? 'pending',

tests/TestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public function setUp(): void
1313
parent::setUp();
1414

1515
Factory::guessFactoryNamesUsing(
16-
fn (string $modelName) => 'Spatie\\TwilioVerify\\Database\\Factories\\'.class_basename($modelName).'Factory',
16+
fn (string $modelName) => 'Spatie\\TwilioVerify\\Database\\Factories\\' . class_basename($modelName) . 'Factory',
1717
);
1818
}
1919

0 commit comments

Comments
 (0)