@@ -285,7 +285,7 @@ |
||
285 | 285 | public function setSmtpSecurity($security) |
286 | 286 | { |
287 | 287 | $security = strtoupper($security); |
288 | - $validSecurity = [ '', 'TLS', 'SSL' ]; |
|
288 | + $validSecurity = ['', 'TLS', 'SSL']; |
|
289 | 289 | |
290 | 290 | if (!in_array($security, $validSecurity)) { |
291 | 291 | throw new InvalidArgumentException( |
@@ -237,7 +237,7 @@ discard block |
||
237 | 237 | public function setTo($email) |
238 | 238 | { |
239 | 239 | if (is_string($email)) { |
240 | - $email = [ $email ]; |
|
240 | + $email = [$email]; |
|
241 | 241 | } |
242 | 242 | |
243 | 243 | if (!is_array($email)) { |
@@ -303,7 +303,7 @@ discard block |
||
303 | 303 | public function setCc($email) |
304 | 304 | { |
305 | 305 | if (is_string($email)) { |
306 | - $email = [ $email ]; |
|
306 | + $email = [$email]; |
|
307 | 307 | } |
308 | 308 | |
309 | 309 | if (!is_array($email)) { |
@@ -370,7 +370,7 @@ discard block |
||
370 | 370 | { |
371 | 371 | if (is_string($email)) { |
372 | 372 | // Means we have a straight email |
373 | - $email = [ $email ]; |
|
373 | + $email = [$email]; |
|
374 | 374 | } |
375 | 375 | |
376 | 376 | if (!is_array($email)) { |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | * @param Container $container Pimple DI container. |
43 | 43 | * @return EmailConfig |
44 | 44 | */ |
45 | - $container['email/config'] = function (Container $container): EmailConfig { |
|
45 | + $container['email/config'] = function(Container $container): EmailConfig { |
|
46 | 46 | $appConfig = $container['config']; |
47 | 47 | $emailConfig = new EmailConfig($appConfig['email']); |
48 | 48 | return $emailConfig; |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | * @param Container $container Pimple DI container. |
53 | 53 | * @return ViewInterface |
54 | 54 | */ |
55 | - $container['email/view'] = function (Container $container): ViewInterface { |
|
55 | + $container['email/view'] = function(Container $container): ViewInterface { |
|
56 | 56 | return $container['view']; |
57 | 57 | }; |
58 | 58 | |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | * @param Container $container Pimple DI container. |
82 | 82 | * @return \Charcoal\Email\EmailInterface |
83 | 83 | */ |
84 | - $container['email'] = $container->factory(function (Container $container): EmailInterface { |
|
84 | + $container['email'] = $container->factory(function(Container $container): EmailInterface { |
|
85 | 85 | return $container['email/factory']->create('email'); |
86 | 86 | }); |
87 | 87 | } |
@@ -166,7 +166,7 @@ |
||
166 | 166 | { |
167 | 167 | $climate = $this->climate(); |
168 | 168 | |
169 | - $callback = function ($success, $failures, $skipped) use ($climate): void { |
|
169 | + $callback = function($success, $failures, $skipped) use ($climate): void { |
|
170 | 170 | if (!empty($success)) { |
171 | 171 | $climate->green()->out(sprintf('%s emails were successfully sent.', count($success))); |
172 | 172 | } |