Completed
Push — develop ( 67d526...98e00e )
by Adrien
26:15 queued 12:26
created
tests/PhpSpreadsheetTests/Cell/DefaultValueBinderTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,8 +24,8 @@
 block discarded – undo
24 24
             ->getMock();
25 25
         // Configure the stub.
26 26
         $this->cellStub->expects($this->any())
27
-             ->method('setValueExplicit')
28
-             ->will($this->returnValue(true));
27
+                ->method('setValueExplicit')
28
+                ->will($this->returnValue(true));
29 29
 
30 30
     }
31 31
 
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Writer/Excel2007.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -140,8 +140,8 @@
 block discarded – undo
140 140
         }
141 141
 
142 142
         $hashTablesArray = ['stylesConditionalHashTable', 'fillHashTable', 'fontHashTable',
143
-                                  'bordersHashTable', 'numFmtHashTable', 'drawingHashTable',
144
-                                  'styleHashTable',
143
+                                    'bordersHashTable', 'numFmtHashTable', 'drawingHashTable',
144
+                                    'styleHashTable',
145 145
                                 ];
146 146
 
147 147
         // Set HashTable variables
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Shared/OLE/PPS.php 1 patch
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -170,21 +170,21 @@
 block discarded – undo
170 170
         $ret = str_pad($this->Name, 64, "\x00");
171 171
 
172 172
         $ret .= pack('v', strlen($this->Name) + 2)  // 66
173
-              . pack('c', $this->Type)              // 67
174
-              . pack('c', 0x00) //UK                // 68
175
-              . pack('V', $this->PrevPps) //Prev    // 72
176
-              . pack('V', $this->NextPps) //Next    // 76
177
-              . pack('V', $this->DirPps)  //Dir     // 80
178
-              . "\x00\x09\x02\x00"                  // 84
179
-              . "\x00\x00\x00\x00"                  // 88
180
-              . "\xc0\x00\x00\x00"                  // 92
181
-              . "\x00\x00\x00\x46"                  // 96 // Seems to be ok only for Root
182
-              . "\x00\x00\x00\x00"                  // 100
183
-              . \PhpSpreadsheet\Shared\OLE::localDateToOLE($this->Time1st)          // 108
184
-              . \PhpSpreadsheet\Shared\OLE::localDateToOLE($this->Time2nd)          // 116
185
-              . pack('V', isset($this->startBlock) ? $this->startBlock : 0)  // 120
186
-              . pack('V', $this->Size)               // 124
187
-              . pack('V', 0); // 128
173
+                . pack('c', $this->Type)              // 67
174
+                . pack('c', 0x00) //UK                // 68
175
+                . pack('V', $this->PrevPps) //Prev    // 72
176
+                . pack('V', $this->NextPps) //Next    // 76
177
+                . pack('V', $this->DirPps)  //Dir     // 80
178
+                . "\x00\x09\x02\x00"                  // 84
179
+                . "\x00\x00\x00\x00"                  // 88
180
+                . "\xc0\x00\x00\x00"                  // 92
181
+                . "\x00\x00\x00\x46"                  // 96 // Seems to be ok only for Root
182
+                . "\x00\x00\x00\x00"                  // 100
183
+                . \PhpSpreadsheet\Shared\OLE::localDateToOLE($this->Time1st)          // 108
184
+                . \PhpSpreadsheet\Shared\OLE::localDateToOLE($this->Time2nd)          // 116
185
+                . pack('V', isset($this->startBlock) ? $this->startBlock : 0)  // 120
186
+                . pack('V', $this->Size)               // 124
187
+                . pack('V', 0); // 128
188 188
         return $ret;
189 189
     }
190 190
 
Please login to merge, or discard this patch.