Passed
Push — master ( 55ec05...cfe8d0 )
by Brent
04:42 queued 02:05
created
src/Brendt/Stitcher/Site/Http/Htaccess.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -209,7 +209,7 @@
 block discarded – undo
209 209
         $this->createConditionalRewrite($rewriteBlock, '%{DOCUMENT_ROOT}/$1.html -f', '^(.+?)/?$ /$1.html [L]');
210 210
     }
211 211
 
212
-    private function createConditionalRewrite(Block &$rewriteBlock, string $condition, string $rule) {
212
+    private function createConditionalRewrite(Block & $rewriteBlock, string $condition, string $rule) {
213 213
         $rewriteBlock->addLineBreak(1);
214 214
 
215 215
         $conditionLine = new Directive();
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Brendt\Stitcher\Site\Http;
4 4
 
5
-use Brendt\Stitcher\Exception\ConfigurationException;
6 5
 use Brendt\Stitcher\Lib\Browser;
7 6
 use Brendt\Stitcher\Site\Page;
8 7
 use Symfony\Component\Filesystem\Filesystem;
Please login to merge, or discard this patch.
src/Brendt/Stitcher/Parser/Site/SiteParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -157,7 +157,7 @@
 block discarded – undo
157 157
         $pageRenderProcess = new PageRenderProcess($this->pageParser, $page, $this->browser->getPublicDir(), $filterValue);
158 158
         $pageRenderProcess->setEnvironment($this->environment);
159 159
 
160
-        $pageRenderProcess->onSuccess(function ($pageIds) use ($page) {
160
+        $pageRenderProcess->onSuccess(function($pageIds) use ($page) {
161 161
             if ($this->siteMap->isEnabled()) {
162 162
                 foreach ($pageIds as $pageId) {
163 163
                     $this->siteMap->addPath($pageId);
Please login to merge, or discard this patch.