@@ -25,7 +25,7 @@ |
||
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 |
@@ -13,7 +13,7 @@ |
||
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 |