Passed
Push — master ( 4c204e...6ce433 )
by Sergey
09:27 queued 06:39
created
src/LTDBeget/dns/configurator/zoneEntities/record/SoaRecord.php 1 patch
Spacing   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -64,8 +64,7 @@  discard block
 block discarded – undo
64 64
      * @param int    $expire
65 65
      * @param int    $minimum
66 66
      */
67
-    public function __construct
68
-    (
67
+    public function __construct(
69 68
         Node $node,
70 69
         int $ttl,
71 70
         string $mName,
@@ -92,7 +91,7 @@  discard block
 block discarded – undo
92 91
      */
93 92
     public function __toString() : string
94 93
     {
95
-        return $this->getMainRecordPart() . ' ' . implode(' ', [
94
+        return $this->getMainRecordPart().' '.implode(' ', [
96 95
             $this->getMName(),
97 96
             $this->getRName(),
98 97
             $this->getSerial(),
Please login to merge, or discard this patch.
src/LTDBeget/dns/configurator/zoneEntities/record/CnameRecord.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
      */
45 45
     public function __toString() : string
46 46
     {
47
-        return $this->getMainRecordPart() . ' ' . $this->getCname();
47
+        return $this->getMainRecordPart().' '.$this->getCname();
48 48
     }
49 49
 
50 50
     /**
Please login to merge, or discard this patch.
src/LTDBeget/dns/configurator/zoneEntities/record/AaaaRecord.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
      */
45 45
     public function __toString() : string
46 46
     {
47
-        return $this->getMainRecordPart() . ' ' . $this->getAddress();
47
+        return $this->getMainRecordPart().' '.$this->getAddress();
48 48
     }
49 49
 
50 50
     /**
Please login to merge, or discard this patch.
src/LTDBeget/dns/configurator/zoneEntities/record/ARecord.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
      */
45 45
     public function __toString() : string
46 46
     {
47
-        return $this->getMainRecordPart() . ' ' . $this->getAddress();
47
+        return $this->getMainRecordPart().' '.$this->getAddress();
48 48
     }
49 49
 
50 50
     /**
Please login to merge, or discard this patch.