Skip to content

Commit bbdd2e6

Browse files
committed
Code style
1 parent c3dc7ae commit bbdd2e6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Common/Microsoft/OLERead.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
namespace PhpOffice\Common\Microsoft;
1919

2020
if (!defined('IDENTIFIER_OLE')) {
21-
define('IDENTIFIER_OLE', pack('CCCCCCCC', 0xd0, 0xcf, 0x11, 0xe0, 0xa1, 0xb1, 0x1a, 0xe1));
21+
define('IDENTIFIER_OLE', pack('CCCCCCCC', 0xD0, 0xCF, 0x11, 0xE0, 0xA1, 0xB1, 0x1A, 0xE1));
2222
}
2323

2424
class OLERead
@@ -44,12 +44,12 @@ class OLERead
4444
public const SMALL_BLOCK_THRESHOLD = 0x1000;
4545

4646
// header offsets
47-
public const NUM_BIG_BLOCK_DEPOT_BLOCKS_POS = 0x2c;
47+
public const NUM_BIG_BLOCK_DEPOT_BLOCKS_POS = 0x2C;
4848
public const ROOT_START_BLOCK_POS = 0x30;
49-
public const SMALL_BLOCK_DEPOT_BLOCK_POS = 0x3c;
49+
public const SMALL_BLOCK_DEPOT_BLOCK_POS = 0x3C;
5050
public const EXTENSION_BLOCK_POS = 0x44;
5151
public const NUM_EXTENSION_BLOCK_POS = 0x48;
52-
public const BIG_BLOCK_DEPOT_BLOCKS_POS = 0x4c;
52+
public const BIG_BLOCK_DEPOT_BLOCKS_POS = 0x4C;
5353

5454
// property storage offsets (directory offsets)
5555
public const SIZE_OF_NAME_POS = 0x40;

0 commit comments

Comments
 (0)