File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ public static function fake(
35
35
return new static (
36
36
time: $ time ?? now (),
37
37
channel: $ channel ?? 'sms ' ,
38
- attempt_sid: $ attempt_sid ?? 'VL ' . Str::random (32 ),
38
+ attempt_sid: $ attempt_sid ?? 'VL ' . Str::random (32 ),
39
39
);
40
40
}
41
41
}
Original file line number Diff line number Diff line change @@ -48,9 +48,9 @@ public static function fake(
48
48
?string $ updated_at = null ,
49
49
): self {
50
50
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 ),
54
54
to: $ to ?? '+41795555825 ' ,
55
55
channel: $ channel ?? 'sms ' ,
56
56
status: $ status ?? 'approved ' ,
Original file line number Diff line number Diff line change @@ -60,12 +60,12 @@ public static function fake(
60
60
?Collection $ send_code_attempts = null ,
61
61
?string $ url = null ,
62
62
): self {
63
- $ service = 'VA ' . Str::random (32 );
63
+ $ service = 'VA ' . Str::random (32 );
64
64
65
65
return new static (
66
- sid: $ sid ?? 'VE ' . Str::random (32 ),
66
+ sid: $ sid ?? 'VE ' . Str::random (32 ),
67
67
service_sid: $ service_sid ?? $ service ,
68
- account_sid: $ account_sid ?? 'AC ' . Str::random (32 ),
68
+ account_sid: $ account_sid ?? 'AC ' . Str::random (32 ),
69
69
to: $ to ?? '+41795555825 ' ,
70
70
channel: $ channel ?? 'sms ' ,
71
71
status: $ status ?? 'pending ' ,
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ public function setUp(): void
13
13
parent ::setUp ();
14
14
15
15
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 ' ,
17
17
);
18
18
}
19
19
You can’t perform that action at this time.
0 commit comments