Completed
Push — master ( 0964f5...56617a )
by Oscar
03:10
created
src/Entities/Yaml.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,6 +29,6 @@
 block discarded – undo
29 29
      */
30 30
     protected function parse($source)
31 31
     {
32
-        return (array) SymfonyYaml::parse($source);
32
+        return (array)SymfonyYaml::parse($source);
33 33
     }
34 34
 }
Please login to merge, or discard this patch.
src/Entities/File.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
         $sort = $search->getSort();
53 53
 
54 54
         if ($sort) {
55
-            uasort($result, function ($a, $b) use ($sort) {
55
+            uasort($result, function($a, $b) use ($sort) {
56 56
                 if ($a[$sort] === $b[$sort]) {
57 57
                     return 0;
58 58
                 }
Please login to merge, or discard this patch.
src/SearchQuery.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
         }
25 25
 
26 26
         if (!empty($query['page'])) {
27
-            $this->page = (int) $query['page'];
27
+            $this->page = (int)$query['page'];
28 28
         }
29 29
 
30 30
         if (!empty($query['sort'])) {
Please login to merge, or discard this patch.