Test Setup Failed
Branch master (e9839e)
by Sergey
02:37 queued 24s
created
src/LTDBeget/dns/configurator/Zone.php 2 patches
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
     }
125 125
 
126 126
     /**
127
-     * @return Node[]
127
+     * @return \Generator
128 128
      */
129 129
     public function iterateNodes()
130 130
     {
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
 
136 136
     /**
137 137
      * @param eRecordType|null $type
138
-     * @return Record[]
138
+     * @return \Generator
139 139
      */
140 140
     public function iterateRecords(eRecordType $type = null)
141 141
     {
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
 
185 185
     /**
186 186
      * Check is node by given name already exists
187
-     * @param $name
187
+     * @param string $name
188 188
      * @return bool
189 189
      */
190 190
     public function isNodeExist($name) : bool
@@ -196,7 +196,7 @@  discard block
 block discarded – undo
196 196
      * @internal
197 197
      * @param $name
198 198
      * @param $arguments
199
-     * @return zoneEntities\record\base\Record[]
199
+     * @return \Generator
200 200
      */
201 201
     public function __call($name, $arguments)
202 202
     {
Please login to merge, or discard this patch.
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @author: Viskov Sergey
4
- * @date: 05.04.16
5
- * @time: 0:43
6
- */
3
+     * @author: Viskov Sergey
4
+     * @date: 05.04.16
5
+     * @time: 0:43
6
+     */
7 7
 
8 8
 namespace LTDBeget\dns\configurator;
9 9
 
Please login to merge, or discard this patch.
src/LTDBeget/dns/enums/eErrorCode.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @author: Viskov Sergey
4
- * @date  : 12/21/15
5
- * @time  : 5:01 PM
6
- */
3
+     * @author: Viskov Sergey
4
+     * @date  : 12/21/15
5
+     * @time  : 5:01 PM
6
+     */
7 7
 
8 8
 namespace LTDBeget\dns\enums;
9 9
 
Please login to merge, or discard this patch.
src/LTDBeget/dns/enums/eRecordType.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @author: Viskov Sergey
4
- * @date: 05.04.16
5
- * @time: 0:48
6
- */
3
+     * @author: Viskov Sergey
4
+     * @date: 05.04.16
5
+     * @time: 0:48
6
+     */
7 7
 
8 8
 namespace LTDBeget\dns\enums;
9 9
 
Please login to merge, or discard this patch.
src/LTDBeget/dns/configurator/errors/ErrorsStore.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @author: Viskov Sergey
4
- * @date: 12.04.16
5
- * @time: 1:57
6
- */
3
+     * @author: Viskov Sergey
4
+     * @date: 12.04.16
5
+     * @time: 1:57
6
+     */
7 7
 
8 8
 namespace LTDBeget\dns\configurator\errors;
9 9
 
Please login to merge, or discard this patch.
src/LTDBeget/dns/configurator/errors/ValidationError.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @author: Viskov Sergey
4
- * @date  : 12/21/15
5
- * @time  : 4:29 PM
6
- */
3
+     * @author: Viskov Sergey
4
+     * @date  : 12/21/15
5
+     * @time  : 4:29 PM
6
+     */
7 7
 
8 8
 namespace LTDBeget\dns\configurator\errors;
9 9
 
Please login to merge, or discard this patch.
src/LTDBeget/dns/configurator/zoneEntities/record/TxtRecord.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @author: Viskov Sergey
4
- * @date: 05.04.16
5
- * @time: 1:42
6
- */
3
+     * @author: Viskov Sergey
4
+     * @date: 05.04.16
5
+     * @time: 1:42
6
+     */
7 7
 
8 8
 namespace LTDBeget\dns\configurator\zoneEntities\record;
9 9
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
     public function __toString() : string
44 44
     {
45 45
         $spited_string      = str_split($this->getTxtData(), 255);
46
-        $spited_with_quotes = array_map(function ($value) {
46
+        $spited_with_quotes = array_map(function($value) {
47 47
             return "\"$value\"";
48 48
         }, $spited_string);
49 49
         $char_sets          = implode("\n", $spited_with_quotes);
Please login to merge, or discard this patch.
src/LTDBeget/dns/configurator/zoneEntities/record/SoaRecord.php 2 patches
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -63,8 +63,7 @@
 block discarded – undo
63 63
      * @param int $expire
64 64
      * @param int $minimum
65 65
      */
66
-    public function __construct
67
-    (
66
+    public function __construct(
68 67
         Node $node,
69 68
         int $ttl,
70 69
         string $mName,
Please login to merge, or discard this patch.
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @author: Viskov Sergey
4
- * @date: 05.04.16
5
- * @time: 1:41
6
- */
3
+     * @author: Viskov Sergey
4
+     * @date: 05.04.16
5
+     * @time: 1:41
6
+     */
7 7
 
8 8
 namespace LTDBeget\dns\configurator\zoneEntities\record;
9 9
 
Please login to merge, or discard this patch.
src/LTDBeget/dns/configurator/zoneEntities/record/ARecord.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @author: Viskov Sergey
4
- * @date: 05.04.16
5
- * @time: 1:40
6
- */
3
+     * @author: Viskov Sergey
4
+     * @date: 05.04.16
5
+     * @time: 1:40
6
+     */
7 7
 
8 8
 namespace LTDBeget\dns\configurator\zoneEntities\record;
9 9
 
Please login to merge, or discard this patch.
src/LTDBeget/dns/configurator/zoneEntities/record/base/Record.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @author: Viskov Sergey
4
- * @date: 05.04.16
5
- * @time: 0:46
6
- */
3
+     * @author: Viskov Sergey
4
+     * @date: 05.04.16
5
+     * @time: 0:46
6
+     */
7 7
 
8 8
 namespace LTDBeget\dns\configurator\zoneEntities\record\base;
9 9
 
Please login to merge, or discard this patch.