Passed
Push — analysis-YOoPyG ( 56b8fc )
by Arnaud
05:06 queued 14s
created
src/Util/File.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
         }
43 43
 
44 44
         set_error_handler(
45
-            function ($severity, $message, $file, $line) {
45
+            function($severity, $message, $file, $line) {
46 46
                 throw new \ErrorException($message, 0, $severity, $file, $line, null);
47 47
             }
48 48
         );
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
@@ -132,7 +132,7 @@
 block discarded – undo
132 132
         $this->options = array_merge([
133 133
             'drafts'  => false, // build drafts or not
134 134
             'dry-run' => false, // if dry-run is true, generated files are not saved
135
-            'page'    => '',    // specific page to build
135
+            'page'    => '', // specific page to build
136 136
         ], $options);
137 137
 
138 138
         // process each step
Please login to merge, or discard this patch.
src/Step/Pages/Generate.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
         $generatorManager = new GeneratorManager($this->builder);
47 47
 
48 48
         // loads local generators
49
-        spl_autoload_register(function ($className) {
49
+        spl_autoload_register(function($className) {
50 50
             $generatorFile = Util::joinFile($this->config->getSourceDir(), 'generators', "$className.php");
51 51
             if (file_exists($generatorFile)) {
52 52
                 require $generatorFile;
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
         });
55 55
 
56 56
         $generators = (array) $this->builder->getConfig()->get('generators');
57
-        array_walk($generators, function ($generator, $priority) use ($generatorManager) {
57
+        array_walk($generators, function($generator, $priority) use ($generatorManager) {
58 58
             if (!class_exists($generator)) {
59 59
                 $message = \sprintf('Unable to load generator "%s".', $generator);
60 60
                 $this->builder->getLogger()->error($message);
Please login to merge, or discard this patch.
src/Command/Serve.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -132,7 +132,7 @@
 block discarded – undo
132 132
         $buildProcess->setPty(Process::isPtySupported());
133 133
         $buildProcess->setTimeout(3600 * 2); // timeout = 2 minutes
134 134
 
135
-        $processOutputCallback = function ($type, $data) use ($output) {
135
+        $processOutputCallback = function($type, $data) use ($output) {
136 136
             $output->write($data, false, OutputInterface::OUTPUT_RAW);
137 137
         };
138 138
 
Please login to merge, or discard this patch.
config/default.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -16,14 +16,14 @@  discard block
 block discarded – undo
16 16
     'title'        => 'Site title',
17 17
     //'baseline'     => 'Site baseline',
18 18
     'baseurl'      => 'http://localhost:8000/',
19
-    'canonicalurl' => false,   // if true 'url()' function preprends URL wirh 'baseurl'
19
+    'canonicalurl' => false, // if true 'url()' function preprends URL wirh 'baseurl'
20 20
     'description'  => 'Site description',
21
-    'taxonomies'   => [        // default taxonomies
21
+    'taxonomies'   => [// default taxonomies
22 22
         'tags'       => 'tag', // can be disabled with 'disabled' value
23 23
         'categories' => 'category',
24 24
     ],
25 25
     'pagination' => [
26
-        'max'  => 5,      // number of pages on each paginated pages
26
+        'max'  => 5, // number of pages on each paginated pages
27 27
         'path' => 'page', // path to paginated pages. ie: '/blog/page/2/'
28 28
     ],
29 29
     'date' => [
@@ -159,14 +159,14 @@  discard block
 block discarded – undo
159 159
         'format' => 'yaml',
160 160
     ],
161 161
     'body' => [
162
-        'format'    => 'md',         // page body format (only Markdown is supported)
162
+        'format'    => 'md', // page body format (only Markdown is supported)
163 163
         'toc'       => ['h2', 'h3'], // headers used to build the table of contents
164 164
         'highlight' => [
165
-            'enabled' => false,  // enables code syntax highlighting (`false` by default)
165
+            'enabled' => false, // enables code syntax highlighting (`false` by default)
166 166
         ],
167 167
         'images' => [
168 168
             'lazy' => [
169
-                'enabled' => true,  // adds `loading="lazy"` attribute (`true` by default)
169
+                'enabled' => true, // adds `loading="lazy"` attribute (`true` by default)
170 170
             ],
171 171
             'resize' => [
172 172
                 'enabled' => false, // enables image resizing by using the `width` extra attribute (`false` by default)
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
                 'enabled' => false, // puts the image in a <figure> element and adds a <figcaption> containing the title (`false` by default)
182 182
             ],
183 183
             'remote' => [
184
-                'enabled' => true,  // turns remote images to Asset to handling them (`true` by default)
184
+                'enabled' => true, // turns remote images to Asset to handling them (`true` by default)
185 185
             ],
186 186
         ],
187 187
     ],
@@ -210,17 +210,17 @@  discard block
 block discarded – undo
210 210
     ],
211 211
     'assets' => [
212 212
         'dir'     => 'assets',
213
-        'compile' => [     // Compile Saas
213
+        'compile' => [// Compile Saas
214 214
             'enabled'   => true,
215 215
             'style'     => 'expanded', // 'expanded' or 'compressed',
216 216
             'import'    => ['sass', 'scss', 'node_modules'],
217 217
             'sourcemap' => false, // works in debug mode only
218 218
             //'variables' => ['var' => 'value']
219 219
         ],
220
-        'minify' => [      // Minify CSS and JS
220
+        'minify' => [// Minify CSS and JS
221 221
             'enabled' => true,
222 222
         ],
223
-        'fingerprint' => [ // Add fingerprint
223
+        'fingerprint' => [// Add fingerprint
224 224
             'enabled' => true,
225 225
         ],
226 226
         'target' => 'assets', // target directory of remote and resized assets
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
228 228
             'optimize' => [
229 229
                 'enabled' => false, // enables images optimization with JpegOptim, Optipng, Pngquant 2, SVGO 1, Gifsicle, cwebp (`false` by default)
230 230
             ],
231
-            'quality'    => 75,     // Image quality after optimization or resize (`75` by default)
231
+            'quality'    => 75, // Image quality after optimization or resize (`75` by default)
232 232
             'responsive' => [
233 233
                 'enabled' => false, // creates responsive images with `html` filter (`false` by default)
234 234
                 'widths'  => [480, 640, 768, 1024, 1366, 1600, 1920],
Please login to merge, or discard this patch.
src/Step/Data/Load.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
         foreach ($files as $file) {
68 68
             $count++;
69 69
             set_error_handler(
70
-                function ($severity, $message, $file, $line) {
70
+                function($severity, $message, $file, $line) {
71 71
                     throw new \ErrorException($message, 0, $severity, $file, $line, null);
72 72
                 }
73 73
             );
Please login to merge, or discard this patch.
src/Step/Pages/Save.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
     public function process(): void
58 58
     {
59 59
         /** @var Page $page */
60
-        $filteredPages = $this->builder->getPages()->filter(function (Page $page) {
60
+        $filteredPages = $this->builder->getPages()->filter(function(Page $page) {
61 61
             return !empty($page->getRendered());
62 62
         });
63 63
         $max = count($filteredPages);
Please login to merge, or discard this patch.
src/Step/Menus/Create.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -146,7 +146,7 @@
 block discarded – undo
146 146
      */
147 147
     protected function collectPages(): void
148 148
     {
149
-        $filteredPages = $this->builder->getPages()->filter(function (Page $page) {
149
+        $filteredPages = $this->builder->getPages()->filter(function(Page $page) {
150 150
             return $page->hasVariable('menu')
151 151
                 && $page->getVariable('published')
152 152
                 && in_array($page->getVariable('language', $this->config->getLanguageDefault()), array_column($this->config->getLanguages(), 'code'));
Please login to merge, or discard this patch.
src/Generator/AbstractGenerator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
         $this->generate();
51 51
 
52 52
         // set default language (e.g.: "en") if necessary
53
-        $this->generatedPages->map(function (\Cecil\Collection\Page\Page $page) {
53
+        $this->generatedPages->map(function(\Cecil\Collection\Page\Page $page) {
54 54
             if ($page->getVariable('language') === null) {
55 55
                 $page->setVariable('language', $this->config->getLanguageDefault());
56 56
             }
Please login to merge, or discard this patch.