Completed
Push — develop ( 2922a1...cfa1fe )
by Adrien
24:40
created
src/PhpSpreadsheet/Shared/OLE/PPS.php 1 patch
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -164,21 +164,21 @@
 block discarded – undo
164 164
         $ret = str_pad($this->Name, 64, "\x00");
165 165
 
166 166
         $ret .= pack('v', strlen($this->Name) + 2)  // 66
167
-              . pack('c', $this->Type)              // 67
168
-              . pack('c', 0x00) //UK                // 68
169
-              . pack('V', $this->PrevPps) //Prev    // 72
170
-              . pack('V', $this->NextPps) //Next    // 76
171
-              . pack('V', $this->DirPps)  //Dir     // 80
172
-              . "\x00\x09\x02\x00"                  // 84
173
-              . "\x00\x00\x00\x00"                  // 88
174
-              . "\xc0\x00\x00\x00"                  // 92
175
-              . "\x00\x00\x00\x46"                  // 96 // Seems to be ok only for Root
176
-              . "\x00\x00\x00\x00"                  // 100
177
-              . \PhpOffice\PhpSpreadsheet\Shared\OLE::localDateToOLE($this->Time1st)          // 108
178
-              . \PhpOffice\PhpSpreadsheet\Shared\OLE::localDateToOLE($this->Time2nd)          // 116
179
-              . pack('V', isset($this->startBlock) ? $this->startBlock : 0)  // 120
180
-              . pack('V', $this->Size)               // 124
181
-              . pack('V', 0); // 128
167
+                . pack('c', $this->Type)              // 67
168
+                . pack('c', 0x00) //UK                // 68
169
+                . pack('V', $this->PrevPps) //Prev    // 72
170
+                . pack('V', $this->NextPps) //Next    // 76
171
+                . pack('V', $this->DirPps)  //Dir     // 80
172
+                . "\x00\x09\x02\x00"                  // 84
173
+                . "\x00\x00\x00\x00"                  // 88
174
+                . "\xc0\x00\x00\x00"                  // 92
175
+                . "\x00\x00\x00\x46"                  // 96 // Seems to be ok only for Root
176
+                . "\x00\x00\x00\x00"                  // 100
177
+                . \PhpOffice\PhpSpreadsheet\Shared\OLE::localDateToOLE($this->Time1st)          // 108
178
+                . \PhpOffice\PhpSpreadsheet\Shared\OLE::localDateToOLE($this->Time2nd)          // 116
179
+                . pack('V', isset($this->startBlock) ? $this->startBlock : 0)  // 120
180
+                . pack('V', $this->Size)               // 124
181
+                . pack('V', 0); // 128
182 182
         return $ret;
183 183
     }
184 184
 
Please login to merge, or discard this patch.