Passed
Push — master ( 7a7ce7...b0ce0d )
by Derek Stephen
09:41 queued 07:58
created
src/EmailMessage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 class EmailMessage extends Message
8 8
 {
9 9
     /** @var array $viewData */
10
-    private $viewData= [];
10
+    private $viewData = [];
11 11
 
12 12
     /** @var string $template */
13 13
     private $template = '';
Please login to merge, or discard this patch.
src/MailPackage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
      */
22 22
     public function addToContainer(Container $c)
23 23
     {
24
-        $c[MailService::class] = $c->factory(function (Container $c) {
24
+        $c[MailService::class] = $c->factory(function(Container $c) {
25 25
             $view = $c->get(ViewEngine::class);
26 26
             $siteConfig = $c->get(SiteConfig::class);
27 27
             $mailService = new MailService();
Please login to merge, or discard this patch.