File tree Expand file tree Collapse file tree 4 files changed +8
-7
lines changed Expand file tree Collapse file tree 4 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 45
45
"l11" : [
46
46
" composer update laravel/framework:11.* orchestra/testbench:9.* nunomaduro/collision:8.* --with-all-dependencies"
47
47
],
48
- "l10 " : [
49
- " composer update laravel/framework:10 .* orchestra/testbench:8 .* nunomaduro/collision:7 .* --with-all-dependencies"
48
+ "l12 " : [
49
+ " composer update laravel/framework:12 .* orchestra/testbench:10 .* nunomaduro/collision:8 .* --with-all-dependencies"
50
50
],
51
51
"test" : [
52
52
" testbench workbench:create-sqlite-db" ,
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ public function models_can_be_attached(): void
25
25
->user ($ user )
26
26
->model ($ user )
27
27
->envelope (fn (Envelope $ envelope ) => $ envelope ->subject ('Hey ' ))
28
- ->content (fn (Content $ content ) => $ content ->view ('welcome ' ))
28
+ ->content (fn (Content $ content ) => $ content ->view ('tests:: welcome ' ))
29
29
->send ();
30
30
31
31
$ this ->assertEquals ($ email ->model_type , $ user ->getMorphClass ());
@@ -44,7 +44,7 @@ public function models_can_be_empty(): void
44
44
$ email = Email::compose ()
45
45
->user ($ user )
46
46
->envelope (fn (Envelope $ envelope ) => $ envelope ->subject ('Hey ' ))
47
- ->content (fn (Content $ content ) => $ content ->view ('welcome ' ))
47
+ ->content (fn (Content $ content ) => $ content ->view ('tests:: welcome ' ))
48
48
->send ();
49
49
50
50
$ this ->assertNull ($ email ->model_type );
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ public function test_it_can_pass_user_models()
48
48
$ email = Email::compose ()
49
49
->user ($ user )
50
50
->envelope (fn (Envelope $ envelope ) => $ envelope ->subject ('Hey ' ))
51
- ->content (fn (Content $ content ) => $ content ->view ('welcome ' ))
51
+ ->content (fn (Content $ content ) => $ content ->view ('tests:: welcome ' ))
52
52
->send ();
53
53
54
54
$ this ->assertEquals (
@@ -70,7 +70,7 @@ public function users_can_have_a_preferred_email()
70
70
$ email = Email::compose ()
71
71
->user ($ user )
72
72
->envelope (fn (Envelope $ envelope ) => $ envelope ->subject ('Hey ' ))
73
- ->content (fn (Content $ content ) => $ content ->view ('welcome ' ))
73
+ ->content (fn (Content $ content ) => $ content ->view ('tests:: welcome ' ))
74
74
->send ();
75
75
76
76
$ this ->assertEquals (
@@ -92,7 +92,7 @@ public function users_can_have_a_preferred_name()
92
92
$ email = Email::compose ()
93
93
->user ($ user )
94
94
->envelope (fn (Envelope $ envelope ) => $ envelope ->subject ('Hey ' ))
95
- ->content (fn (Content $ content ) => $ content ->view ('welcome ' ))
95
+ ->content (fn (Content $ content ) => $ content ->view ('tests:: welcome ' ))
96
96
->send ();
97
97
98
98
$ this ->assertEquals (
Original file line number Diff line number Diff line change
1
+ Welcome
You can’t perform that action at this time.
0 commit comments