Completed
Pull Request — develop (#222)
by
unknown
19:33
created
src/PhpSpreadsheet/Worksheet/BaseDrawing.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -137,8 +137,7 @@
 block discarded – undo
137 137
         $this->rotation = 0;
138 138
         $this->shadow = new Drawing\Shadow();
139 139
 
140
-        // Set image index
141
-        ++self::$imageCounter;
140
+        // Set image index++self::$imageCounter;
142 141
         $this->imageIndex = self::$imageCounter;
143 142
     }
144 143
 
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3849,7 +3849,7 @@
 block discarded – undo
3849 3849
      *
3850 3850
      * @return bool
3851 3851
      */
3852
-    private function executeBinaryComparisonOperation($cellID, $operand1, $operand2, $operation, Stack &$stack, $recursingArrays = false)
3852
+    private function executeBinaryComparisonOperation($cellID, $operand1, $operand2, $operation, Stack & $stack, $recursingArrays = false)
3853 3853
     {
3854 3854
         //    If we're dealing with matrix operations, we want a matrix result
3855 3855
         if ((is_array($operand1)) || (is_array($operand2))) {
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Reader/Xml.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
             Settings::getLibXmlLoaderOptions()
140 140
         );
141 141
         if (!($xml instanceof \SimpleXMLElement)) {
142
-            throw new Exception('SimpleXMLElement can not load ' .$pFilename);
142
+            throw new Exception('SimpleXMLElement can not load ' . $pFilename);
143 143
         }
144 144
         $namespaces = $xml->getNamespaces(true);
145 145
 
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
             Settings::getLibXmlLoaderOptions()
172 172
         );
173 173
         if (!($xml instanceof \SimpleXMLElement)) {
174
-            throw new Exception('SimpleXMLElement can not load ' .$pFilename);
174
+            throw new Exception('SimpleXMLElement can not load ' . $pFilename);
175 175
         }
176 176
         $namespaces = $xml->getNamespaces(true);
177 177
 
@@ -351,7 +351,7 @@  discard block
 block discarded – undo
351 351
             Settings::getLibXmlLoaderOptions()
352 352
         );
353 353
         if (!($xml instanceof \SimpleXMLElement)) {
354
-            throw new Exception('SimpleXMLElement can not load ' .$pFilename);
354
+            throw new Exception('SimpleXMLElement can not load ' . $pFilename);
355 355
         }
356 356
         $namespaces = $xml->getNamespaces(true);
357 357
 
Please login to merge, or discard this patch.