Completed
Branch feature/pre-split (b025f2)
by Anton
03:30
created
source/Spiral/Support/Serializer.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -47,8 +47,8 @@  discard block
 block discarded – undo
47 47
         }
48 48
 
49 49
         //Delimiters between rows and sub-arrays.
50
-        $subIndent = "\n" . str_repeat(self::INDENT, $level + 2);
51
-        $keyIndent = "\n" . str_repeat(self::INDENT, $level + 1);
50
+        $subIndent = "\n".str_repeat(self::INDENT, $level + 2);
51
+        $keyIndent = "\n".str_repeat(self::INDENT, $level + 1);
52 52
 
53 53
         //No keys for associated array
54 54
         $associated = array_diff_key($array, array_keys(array_keys($array)));
@@ -70,28 +70,28 @@  discard block
 block discarded – undo
70 70
                         var_export($key, true),
71 71
                         $innerIndent, ' ',
72 72
                         STR_PAD_RIGHT
73
-                    ) . " => ";
73
+                    )." => ";
74 74
             }
75 75
 
76 76
             if (!is_array($value)) {
77
-                $result[] = $prefix . $this->packValue($value);
77
+                $result[] = $prefix.$this->packValue($value);
78 78
                 continue;
79 79
             }
80 80
 
81 81
             if ($value === []) {
82
-                $result[] = $prefix . "[]";
82
+                $result[] = $prefix."[]";
83 83
                 continue;
84 84
             }
85 85
 
86 86
             $subArray = $this->packArray($value, $level + 1);
87
-            $result[] = $prefix . "[{$subIndent}" . $subArray . "{$keyIndent}]";
87
+            $result[] = $prefix."[{$subIndent}".$subArray."{$keyIndent}]";
88 88
         }
89 89
 
90 90
         if ($level !== 0) {
91 91
             return $result ? join(",{$keyIndent}", $result) : "";
92 92
         }
93 93
 
94
-        return "[{$keyIndent}" . join(",{$keyIndent}", $result) . "\n]";
94
+        return "[{$keyIndent}".join(",{$keyIndent}", $result)."\n]";
95 95
     }
96 96
 
97 97
     /**
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
         if (is_string($value) && class_exists($value)) {
124 124
             $reflection = new \ReflectionClass($value);
125 125
 
126
-            return '\\' . $reflection->getName() . '::class';
126
+            return '\\'.$reflection->getName().'::class';
127 127
         }
128 128
 
129 129
         return var_export($value, true);
Please login to merge, or discard this patch.
source/Spiral/Reactor/Prototypes/Declaration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
      */
30 30
     protected function indent($string, $indent = 0)
31 31
     {
32
-        return str_repeat(self::INDENT, max($indent, 0)) . $string;
32
+        return str_repeat(self::INDENT, max($indent, 0)).$string;
33 33
     }
34 34
 
35 35
     /**
Please login to merge, or discard this patch.
source/Spiral/Reactor/DeclarationAggregator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -202,7 +202,7 @@
 block discarded – undo
202 202
         $result = '';
203 203
 
204 204
         foreach ($this->elements as $element) {
205
-            $result .= $element->render($indentLevel) . "\n\n";
205
+            $result .= $element->render($indentLevel)."\n\n";
206 206
         }
207 207
 
208 208
         return rtrim($result, "\n");
Please login to merge, or discard this patch.
source/Spiral/Reactor/Body/DocComment.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
     {
24 24
         $lines = $this->getLines();
25 25
 
26
-        array_walk($lines, function (&$line) use ($search, $replace) {
26
+        array_walk($lines, function(&$line) use ($search, $replace) {
27 27
             $line = str_replace($search, $replace, $line);
28 28
         });
29 29
 
Please login to merge, or discard this patch.
source/Spiral/Reactor/Body/Source.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
111 111
     public function render($indentLevel = 0)
112 112
     {
113 113
         $lines = $this->lines;
114
-        array_walk($lines, function (&$line) use ($indentLevel) {
114
+        array_walk($lines, function(&$line) use ($indentLevel) {
115 115
             $line = $this->indent($line, $indentLevel);
116 116
         });
117 117
 
Please login to merge, or discard this patch.
source/Spiral/Reactor/ClassDeclaration/PropertyDeclaration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@
 block discarded – undo
93 93
     {
94 94
         $result = '';
95 95
         if (!$this->docComment->isEmpty()) {
96
-            $result .= $this->docComment->render($indentLevel) . "\n";
96
+            $result .= $this->docComment->render($indentLevel)."\n";
97 97
         }
98 98
 
99 99
         $result .= $this->indent("{$this->access} \${$this->getName()}", $indentLevel);
Please login to merge, or discard this patch.
source/Spiral/Reactor/FileDeclaration.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
         $result = "<?php\n";
109 109
 
110 110
         if (!$this->docComment->isEmpty()) {
111
-            $result .= $this->docComment->render($indentLevel) . "\n";
111
+            $result .= $this->docComment->render($indentLevel)."\n";
112 112
         }
113 113
 
114 114
         if (!empty($this->namespace)) {
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
         }
117 117
 
118 118
         if (!empty($this->uses)) {
119
-            $result .= $this->renderUses($indentLevel) . "\n\n";
119
+            $result .= $this->renderUses($indentLevel)."\n\n";
120 120
         }
121 121
 
122 122
         $result .= $this->elements->render($indentLevel);
Please login to merge, or discard this patch.
source/Spiral/Database/Entities/PDODriver.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -264,7 +264,7 @@  discard block
 block discarded – undo
264 264
      */
265 265
     public function identifier($identifier)
266 266
     {
267
-        return $identifier == '*' ? '*' : '"' . str_replace('"', '""', $identifier) . '"';
267
+        return $identifier == '*' ? '*' : '"'.str_replace('"', '""', $identifier).'"';
268 268
     }
269 269
 
270 270
     /**
@@ -587,7 +587,7 @@  discard block
 block discarded – undo
587 587
     protected function savepointCreate($name)
588 588
     {
589 589
         $this->logger()->info("Creating savepoint '{$name}'");
590
-        $this->statement('SAVEPOINT ' . $this->identifier("SVP{$name}"));
590
+        $this->statement('SAVEPOINT '.$this->identifier("SVP{$name}"));
591 591
     }
592 592
 
593 593
     /**
@@ -601,7 +601,7 @@  discard block
 block discarded – undo
601 601
     protected function savepointRelease($name)
602 602
     {
603 603
         $this->logger()->info("Releasing savepoint '{$name}'");
604
-        $this->statement('RELEASE SAVEPOINT ' . $this->identifier("SVP{$name}"));
604
+        $this->statement('RELEASE SAVEPOINT '.$this->identifier("SVP{$name}"));
605 605
     }
606 606
 
607 607
     /**
@@ -615,7 +615,7 @@  discard block
 block discarded – undo
615 615
     protected function savepointRollback($name)
616 616
     {
617 617
         $this->logger()->info("Rolling back savepoint '{$name}'");
618
-        $this->statement('ROLLBACK TO SAVEPOINT ' . $this->identifier("SVP{$name}"));
618
+        $this->statement('ROLLBACK TO SAVEPOINT '.$this->identifier("SVP{$name}"));
619 619
     }
620 620
 
621 621
     /**
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@
 block discarded – undo
126 126
      *
127 127
      * @param array $columns Array of columns.
128 128
      * @param array $rowsets Array of rowsets.
129
-     * @return mixed
129
+     * @return integer
130 130
      */
131 131
     public function batchInsert(array $columns = [], array $rowsets = [])
132 132
     {
Please login to merge, or discard this patch.
source/Spiral/Database/Helpers/QueryInterpolator.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -120,16 +120,16 @@
 block discarded – undo
120 120
                 return sprintf('%F', $parameter);
121 121
 
122 122
             case 'string':
123
-                return "'" . addcslashes($parameter, "'") . "'";
123
+                return "'".addcslashes($parameter, "'")."'";
124 124
 
125 125
             case 'object':
126 126
                 if (method_exists($parameter, '__toString')) {
127
-                    return "'" . addcslashes((string)$parameter, "'") . "'";
127
+                    return "'".addcslashes((string)$parameter, "'")."'";
128 128
                 }
129 129
 
130 130
                 if ($parameter instanceof \DateTime) {
131 131
                     //Let's process dates different way
132
-                    return "'" . $parameter->format(\DateTime::ISO8601) . "'";
132
+                    return "'".$parameter->format(\DateTime::ISO8601)."'";
133 133
                 }
134 134
         }
135 135
 
Please login to merge, or discard this patch.
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
      *
59 59
      * Every value has to wrapped with parameter interface.
60 60
      *
61
-     * @param array $parameters
61
+     * @param ParameterInterface[] $parameters
62 62
      *
63 63
      * @return ParameterInterface[]
64 64
      *
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
     /**
97 97
      * Get parameter value.
98 98
      *
99
-     * @param mixed $parameter
99
+     * @param ParameterInterface $parameter
100 100
      *
101 101
      * @return string
102 102
      */
Please login to merge, or discard this patch.