@@ -32,7 +32,7 @@ public function testQueuedMailableSent()
3232 ->onlyMethods (['createMessage ' , 'to ' ])
3333 ->getMock ();
3434 $ mailer ->setQueue ($ queueFake );
35- $ mailable = new MailableQueableStub ;
35+ $ mailable = new MailableQueueableStub ;
3636 $ queueFake ->assertNothingPushed ();
3737 $ mailer ->send ($ mailable );
3838 $ queueFake ->assertPushedOn (null , SendQueuedMailable::class);
@@ -46,7 +46,7 @@ public function testQueuedMailableWithAttachmentSent()
4646 ->onlyMethods (['createMessage ' ])
4747 ->getMock ();
4848 $ mailer ->setQueue ($ queueFake );
49- $ mailable = new MailableQueableStub ;
49+ $ mailable = new MailableQueueableStub ;
5050 $ attachmentOption = ['mime ' => 'image/jpeg ' , 'as ' => 'bar.jpg ' ];
5151 $ mailable ->attach ('foo.jpg ' , $ attachmentOption );
5252 $ this ->assertIsArray ($ mailable ->attachments );
@@ -75,7 +75,7 @@ public function testQueuedMailableWithAttachmentFromDiskSent()
7575 ->onlyMethods (['createMessage ' ])
7676 ->getMock ();
7777 $ mailer ->setQueue ($ queueFake );
78- $ mailable = new MailableQueableStub ;
78+ $ mailable = new MailableQueueableStub ;
7979 $ attachmentOption = ['mime ' => 'image/jpeg ' , 'as ' => 'bar.jpg ' ];
8080
8181 $ mailable ->attachFromStorage ('/ ' , 'foo.jpg ' , $ attachmentOption );
@@ -95,7 +95,7 @@ protected function getMocks()
9595 }
9696}
9797
98- class MailableQueableStub extends Mailable implements ShouldQueue
98+ class MailableQueueableStub extends Mailable implements ShouldQueue
9999{
100100 use Queueable;
101101
0 commit comments