Test Failed
Push — develop ( 32ca41...230235 )
by Brent
04:59
created
src/Pageon/Lib/Markdown/ImageRenderer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
 
26 26
     public function render(AbstractInline $inline, ElementRendererInterface $htmlRenderer)
27 27
     {
28
-        if (! $inline instanceof Image) {
28
+        if (!$inline instanceof Image) {
29 29
             throw new InvalidArgumentException('Inline must be instance of ' . Image::class);
30 30
         }
31 31
 
Please login to merge, or discard this patch.
src/Pageon/Lib/Markdown/ExternalLinkRenderer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
 {
14 14
     public function render(AbstractInline $inline, ElementRendererInterface $htmlRenderer): HtmlElement
15 15
     {
16
-        if (! $inline instanceof Link) {
16
+        if (!$inline instanceof Link) {
17 17
             throw new InvalidArgumentException('Inline must be instance of ' . Link::class);
18 18
         }
19 19
 
Please login to merge, or discard this patch.