Passed
Push — master ( 0f1c6b...d6c91c )
by Andreas
09:00
created
src/Bookmarks.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -173,7 +173,7 @@
 block discarded – undo
173 173
     {
174 174
         $matches = [];
175 175
         $regex = '/BookmarkBegin\nBookmarkTitle: (?<title>.+)\n' .
176
-                 'BookmarkLevel: (?<level>[0-9]+)\nBookmarkPageNumber: (?<page>[0-9]+)/';
176
+                    'BookmarkLevel: (?<level>[0-9]+)\nBookmarkPageNumber: (?<page>[0-9]+)/';
177 177
         preg_match_all($regex, $dump, $matches, PREG_SET_ORDER);
178 178
 
179 179
         foreach ($matches as $bm) {
Please login to merge, or discard this patch.
src/Pages.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -87,8 +87,8 @@
 block discarded – undo
87 87
     {
88 88
         $matches = [];
89 89
         $regex = '/PageMediaBegin\nPageMediaNumber: (?<page>.+)\nPageMediaRotation: (?<rotation>[0-9]+)\n' .
90
-                 'PageMediaRect: .*\n' .
91
-                 'PageMediaDimensions: (?<dim>(([0-9]\,)?[0-9]+(\.[0-9]+)?) (([0-9]\,)?[0-9]+(\.[0-9]+)?))/';
90
+                    'PageMediaRect: .*\n' .
91
+                    'PageMediaDimensions: (?<dim>(([0-9]\,)?[0-9]+(\.[0-9]+)?) (([0-9]\,)?[0-9]+(\.[0-9]+)?))/';
92 92
         preg_match_all($regex, $dump, $matches, PREG_SET_ORDER);
93 93
 
94 94
         $this->pages = [];
Please login to merge, or discard this patch.