Completed
Push — master ( 6dda01...2e3c2b )
by Martin
19:18
created
src/TwigRenderer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
      */
39 39
     public function getOption(string $option, $default = null)
40 40
     {
41
-        return $this->environment->getConfig('renderer/' . $option, $default);
41
+        return $this->environment->getConfig('renderer/'.$option, $default);
42 42
     }
43 43
 
44 44
     /**
Please login to merge, or discard this patch.
src/CommonMarkTwig.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Webuni\CommonMark\TwigRenderer;
4 4
 
5
-use League\CommonMark\Converter;
6 5
 use League\CommonMark\MarkdownConverter;
7 6
 use Twig\Environment as Twig;
8 7
 use Twig\Loader\ChainLoader;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 
18 18
     public static function createTwigLoader(): LoaderInterface
19 19
     {
20
-        return new FilesystemLoader([dirname(__DIR__) . '/templates']);
20
+        return new FilesystemLoader([dirname(__DIR__).'/templates']);
21 21
     }
22 22
 
23 23
     public static function configureTwig(Twig $twig): void
Please login to merge, or discard this patch.