Completed
Push — master ( bd44d0...9017a1 )
by Tomáš
04:50
created
src/Renderable/Latte/LatteDecorator.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * This file is part of Symplify
@@ -84,11 +84,11 @@  discard block
 block discarded – undo
84 84
 
85 85
     private function prependLayoutToFileContent(AbstractFile $file)
86 86
     {
87
-        if (! $file->getLayout()) {
87
+        if (!$file->getLayout()) {
88 88
             return;
89 89
         }
90 90
 
91 91
         $layoutLine = sprintf('{layout "%s"}', $file->getLayout());
92
-        $file->changeContent($layoutLine . PHP_EOL . PHP_EOL . $file->getContent());
92
+        $file->changeContent($layoutLine.PHP_EOL.PHP_EOL.$file->getContent());
93 93
     }
94 94
 }
Please login to merge, or discard this patch.
src/Configuration/Configuration.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * This file is part of Symplify
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
 
107 107
     private function extractPostRoute(array $options) : array
108 108
     {
109
-        if (! isset($options['configuration']['postRoute'])) {
109
+        if (!isset($options['configuration']['postRoute'])) {
110 110
             return $options;
111 111
         }
112 112
 
Please login to merge, or discard this patch.