Completed
Pull Request — master (#35)
by
unknown
03:40 queued 01:21
created
src/Engines/Markdown/MarkdownEngine.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,9 @@
 block discarded – undo
44 44
                 return $block;
45 45
             }
46 46
             // Exception thrown when language not supported, so just catch it and ignore it.
47
-            catch (\DomainException $exception) {}
47
+            catch (\DomainException $exception)
48
+            {
49
+}
48 50
         }
49 51
 
50 52
         return parent::blockFencedCodeComplete($block);
Please login to merge, or discard this patch.
src/Manager/AssetManager.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -90,7 +90,9 @@
 block discarded – undo
90 90
             $file = $this->fs->createSplFileInfo($file);
91 91
         }
92 92
 
93
-        if (!$this->fs->exists($file)) { return; }
93
+        if (!$this->fs->exists($file))
94
+        {
95
+return; }
94 96
 
95 97
         $filePath = $file->getRealPath();
96 98
         $pathToStrip = $this->fs->appendPath(getcwd(), $options['prefix']);
Please login to merge, or discard this patch.