@@ -73,7 +73,7 @@ |
||
73 | 73 | { |
74 | 74 | return [ |
75 | 75 | 'class' => Transport::class, |
76 | - 'constructArgs' => [$this->token] |
|
76 | + 'constructArgs' => [ $this->token ] |
|
77 | 77 | ]; |
78 | 78 | } |
79 | 79 |
@@ -35,7 +35,7 @@ |
||
35 | 35 | ); |
36 | 36 | |
37 | 37 | if (is_array($error)) { |
38 | - $error['StatusCode'] = $response->getStatusCode(); |
|
38 | + $error[ 'StatusCode' ] = $response->getStatusCode(); |
|
39 | 39 | } |
40 | 40 | |
41 | 41 | Postmark::error($error); |
@@ -30,8 +30,8 @@ |
||
30 | 30 | Event::on( |
31 | 31 | MailerHelper::class, |
32 | 32 | MailerHelper::EVENT_REGISTER_MAILER_TRANSPORT_TYPES, |
33 | - function (RegisterComponentTypesEvent $event) { |
|
34 | - $event->types[] = Adapter::class; |
|
33 | + function(RegisterComponentTypesEvent $event) { |
|
34 | + $event->types[ ] = Adapter::class; |
|
35 | 35 | } |
36 | 36 | ); |
37 | 37 |