Passed
Push — master ( e6d507...3647e7 )
by Arnaud
06:59
created
src/Assets/Asset.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
      *
63 63
      * @throws RuntimeException
64 64
      */
65
-    public function __construct(Builder $builder, string|array $paths, array|null $options = null)
65
+    public function __construct(Builder $builder, string | array $paths, array | null $options = null)
66 66
     {
67 67
         $this->builder = $builder;
68 68
         $this->config = $builder->getConfig();
@@ -83,21 +83,21 @@  discard block
 block discarded – undo
83 83
             }
84 84
         });
85 85
         $this->data = [
86
-            'file'     => '',    // absolute file path
87
-            'files'    => [],    // array of absolute files path
86
+            'file'     => '', // absolute file path
87
+            'files'    => [], // array of absolute files path
88 88
             'missing'  => false, // if file not found but missing allowed: 'missing' is true
89
-            '_path'    => '',    // original path
90
-            'path'     => '',    // public path
91
-            'url'      => null,  // URL if it's a remote file
92
-            'ext'      => '',    // file extension
93
-            'type'     => '',    // file type (e.g.: image, audio, video, etc.)
94
-            'subtype'  => '',    // file media type (e.g.: image/png, audio/mp3, etc.)
95
-            'size'     => 0,     // file size (in bytes)
96
-            'width'    => 0,     // image width (in pixels)
97
-            'height'   => 0,     // image height (in pixels)
98
-            'exif'     => [],    // image exif data
99
-            'content'  => '',    // file content
100
-            'hash'     => '',    // file content hash (md5)
89
+            '_path'    => '', // original path
90
+            'path'     => '', // public path
91
+            'url'      => null, // URL if it's a remote file
92
+            'ext'      => '', // file extension
93
+            'type'     => '', // file type (e.g.: image, audio, video, etc.)
94
+            'subtype'  => '', // file media type (e.g.: image/png, audio/mp3, etc.)
95
+            'size'     => 0, // file size (in bytes)
96
+            'width'    => 0, // image width (in pixels)
97
+            'height'   => 0, // image height (in pixels)
98
+            'exif'     => [], // image exif data
99
+            'content'  => '', // file content
100
+            'hash'     => '', // file content hash (md5)
101 101
         ];
102 102
 
103 103
         // handles options
Please login to merge, or discard this patch.
src/Collection/Page/Collection.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
      *   reverse    => false|true
64 64
      * ]
65 65
      */
66
-    public function sortBy(string|array|null $options): self
66
+    public function sortBy(string | array | null $options): self
67 67
     {
68 68
         $sortBy = \is_string($options) ? $options : $options['variable'] ?? 'date';
69 69
         $sortMethod = \sprintf('sortBy%s', ucfirst(str_replace('updated', 'date', $sortBy)));
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
     /**
78 78
      * Sorts pages by date (or 'updated'): the most recent first.
79 79
      */
80
-    public function sortByDate(string|array|null $options = null): self
80
+    public function sortByDate(string | array | null $options = null): self
81 81
     {
82 82
         $opt = [];
83 83
         // backward compatibility (i.e. $options = 'updated')
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
     /**
112 112
      * Sorts pages by title (natural sort).
113 113
      */
114
-    public function sortByTitle(string|array|null $options = null): self
114
+    public function sortByTitle(string | array | null $options = null): self
115 115
     {
116 116
         $opt = [];
117 117
         // options
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
     /**
126 126
      * Sorts by weight (the heaviest first).
127 127
      */
128
-    public function sortByWeight(string|array|null $options = null): self
128
+    public function sortByWeight(string | array | null $options = null): self
129 129
     {
130 130
         $opt = [];
131 131
         // options
Please login to merge, or discard this patch.
src/Builder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -304,7 +304,7 @@
 block discarded – undo
304 304
     /**
305 305
      * Set configuration.
306 306
      */
307
-    public function setConfig(array|Config $config): self
307
+    public function setConfig(array | Config $config): self
308 308
     {
309 309
         if (\is_array($config)) {
310 310
             $config = new Config($config);
Please login to merge, or discard this patch.
src/Url.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,8 +58,8 @@
 block discarded – undo
58 58
 
59 59
         // handles options
60 60
         $canonical = null; // if true prefix url with baseurl config
61
-        $format = null;    // output format
62
-        $language = null;  // force language
61
+        $format = null; // output format
62
+        $language = null; // force language
63 63
         extract(\is_array($options) ? $options : [], EXTR_IF_EXISTS);
64 64
 
65 65
         // base URL
Please login to merge, or discard this patch.