Completed
Push — master ( a57b7b...77e56c )
by Adam
17s queued 12s
created
app/Services/Parser/Extensions/YoutubeLinkProcessor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
     public function __invoke(DocumentParsedEvent $e): void
15 15
     {
16 16
         foreach ($e->getDocument()->iterator() as $link) {
17
-            if (! ($link instanceof Link)) {
17
+            if (!($link instanceof Link)) {
18 18
                 continue;
19 19
             }
20 20
 
Please login to merge, or discard this patch.
app/Services/Parser/Extensions/InternalLinkProcessor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
         $internalHosts = $this->config->get('internal_link/internal_hosts');
23 23
 
24 24
         foreach ($e->getDocument()->iterator() as $link) {
25
-            if (! ($link instanceof Link)) {
25
+            if (!($link instanceof Link)) {
26 26
                 continue;
27 27
             }
28 28
 
Please login to merge, or discard this patch.