Passed
Push — master ( 5826be...2ec359 )
by Andreas
05:28 queued 03:08
created
src/Pages.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
87 87
     {
88 88
         $matches = [];
89 89
         $regex = '/PageMediaBegin\nPageMediaNumber: (?<page>.+)\nPageMediaRotation: (?<rotation>[0-9]+)\n' .
90
-                 'PageMediaRect: .*\nPageMediaDimensions: (?<dim>([0-9]+(\.[0-9]+)?) ([0-9]+(\.[0-9]+)?))/';
90
+                    'PageMediaRect: .*\nPageMediaDimensions: (?<dim>([0-9]+(\.[0-9]+)?) ([0-9]+(\.[0-9]+)?))/';
91 91
         preg_match_all($regex, $dump, $matches, PREG_SET_ORDER);
92 92
 
93 93
         $this->pages = [];
Please login to merge, or discard this patch.
src/Util/FileSorter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
      */
32 32
     public function __construct()
33 33
     {
34
-        $this->naturalSorter = function (SplFileInfo $a, SplFileInfo $b) {
34
+        $this->naturalSorter = function(SplFileInfo $a, SplFileInfo $b) {
35 35
             return strnatcasecmp($a->getRealPath(), $b->getRealPath());
36 36
         };
37 37
     }
Please login to merge, or discard this patch.
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.