Passed
Branch master (8e75a8)
by Petr
10:01
created
Category
php-tests/DummyService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
 
21 21
     public function canUseService(): bool
22 22
     {
23
-        return (bool)$this->canUseService;
23
+        return (bool) $this->canUseService;
24 24
     }
25 25
 
26 26
     public function systemServiceId(): int
Please login to merge, or discard this patch.
php-src/Basics/Content.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,8 +51,8 @@
 block discarded – undo
51 51
         $this->body = (string) $this->body;
52 52
         $this->tag = (string) $this->tag;
53 53
         $this->plain = is_null($this->plain) ? null : (string) $this->plain;
54
-        $this->unsubEmail = is_null($this->unsubEmail) ? null : (string) $this->unsubEmail ;
55
-        $this->unsubLink = is_null($this->unsubLink) ? null : (string) $this->unsubLink ;
54
+        $this->unsubEmail = is_null($this->unsubEmail) ? null : (string) $this->unsubEmail;
55
+        $this->unsubLink = is_null($this->unsubLink) ? null : (string) $this->unsubLink;
56 56
         $this->unsubByClick = (bool) $this->unsubByClick;
57 57
         return $this;
58 58
     }
Please login to merge, or discard this patch.