Test Setup Failed
Pull Request — latest (#3)
by Mark
31:31
created
src/Renderer/TextRenderer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
      */
27 27
     public function render(Node $node)
28 28
     {
29
-        if (! ($node instanceof Text)) {
29
+        if (!($node instanceof Text)) {
30 30
             throw new \InvalidArgumentException('Incompatible node type: ' . \get_class($node));
31 31
         }
32 32
 
Please login to merge, or discard this patch.
src/Renderer/EmojiRenderer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
      */
27 27
     public function render(Node $node)
28 28
     {
29
-        if (! ($node instanceof Emoji)) {
29
+        if (!($node instanceof Emoji)) {
30 30
             throw new \InvalidArgumentException('Incompatible node type: ' . \get_class($node));
31 31
         }
32 32
 
Please login to merge, or discard this patch.