Passed
Push — dependabot/composer/twig/twig-... ( 1ba109 )
by
unknown
03:49
created
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 (ex: "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->getLanguage() === null) {
55 55
                 $page->setLanguage($this->config->getLanguageDefault());
56 56
             }
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
@@ -140,7 +140,7 @@
 block discarded – undo
140 140
      */
141 141
     protected function collectPages(): void
142 142
     {
143
-        $filteredPages = $this->builder->getPages()->filter(function (Page $page) {
143
+        $filteredPages = $this->builder->getPages()->filter(function(Page $page) {
144 144
             return $page->hasVariable('menu')
145 145
                 && $page->getVariable('published')
146 146
                 && in_array($page->getLanguage() ?? $this->config->getLanguageDefault(), array_column($this->config->getLanguages(), 'code'));
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/Pages/Render.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
 
65 65
         // collects published pages
66 66
         /** @var Page $page */
67
-        $filteredPages = $this->builder->getPages()->filter(function (Page $page) {
67
+        $filteredPages = $this->builder->getPages()->filter(function(Page $page) {
68 68
             return !empty($page->getVariable('published'));
69 69
         });
70 70
         $max = count($filteredPages);
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
                 // renders with Twig
134 134
                 try {
135 135
                     $deprecations = [];
136
-                    set_error_handler(function ($type, $msg) use (&$deprecations) {
136
+                    set_error_handler(function($type, $msg) use (&$deprecations) {
137 137
                         if (E_USER_DEPRECATED === $type) {
138 138
                             $deprecations[] = $msg;
139 139
                         }
@@ -278,7 +278,7 @@  discard block
 block discarded – undo
278 278
     protected function getTranslations(Page $refPage): \Cecil\Collection\Page\Collection
279 279
     {
280 280
         /** @var Page $page */
281
-        $filteredPages = $this->builder->getPages()->filter(function (Page $page) use ($refPage) {
281
+        $filteredPages = $this->builder->getPages()->filter(function(Page $page) use ($refPage) {
282 282
             return $page->getId() !== $refPage->getId()
283 283
                 && $page->getVariable('langref') == $refPage->getVariable('langref')
284 284
                 && $page->getType() == $refPage->getType()
@@ -299,7 +299,7 @@  discard block
 block discarded – undo
299 299
                 // add generator meta tag
300 300
                 if (!preg_match('/<meta name="generator".*/i', $rendered)) {
301 301
                     $meta = \sprintf('<meta name="generator" content="Cecil %s" />', Builder::getVersion());
302
-                    $rendered = preg_replace_callback('/([[:blank:]]+)(<\/head>)/i', function ($matches) use ($meta) {
302
+                    $rendered = preg_replace_callback('/([[:blank:]]+)(<\/head>)/i', function($matches) use ($meta) {
303 303
                         return str_repeat($matches[1], 2).$meta."\n".$matches[1].$matches[2];
304 304
                     }, $rendered);
305 305
                 }
@@ -316,7 +316,7 @@  discard block
 block discarded – undo
316 316
             //'/href="([A-Za-z0-9_\.\-\/]+)\.md(\#[A-Za-z0-9\-]+)?"/is',
317 317
             // https://regex101.com/r/ycWMe4/1
318 318
             '/href="(\/|)([A-Za-z0-9_\.\-\/]+)\.md(\#[A-Za-z0-9\-]+)?"/is',
319
-            function ($matches) use ($page) {
319
+            function($matches) use ($page) {
320 320
                 // section spage
321 321
                 $hrefPattern = 'href="../%s/%s"';
322 322
                 // root page
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.