From 0825f8a48b94fdcfdd314ded2804bd5c9ec4f3ea Mon Sep 17 00:00:00 2001 From: SqrtMinusOne Date: Sat, 5 Oct 2024 01:51:43 +0300 Subject: [PATCH] [ArsTechnicaBridge] Fix lint --- bridges/ArsTechnicaBridge.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bridges/ArsTechnicaBridge.php b/bridges/ArsTechnicaBridge.php index 65be103e..4d5b7fca 100644 --- a/bridges/ArsTechnicaBridge.php +++ b/bridges/ArsTechnicaBridge.php @@ -67,20 +67,20 @@ class ArsTechnicaBridge extends FeedExpander // Some lightboxes are nested in figures. I'd guess that's a // bug in the website - foreach($item['content']->find('figure div div.ars-lightbox') as $weird_lightbox) { + foreach ($item['content']->find('figure div div.ars-lightbox') as $weird_lightbox) { $weird_lightbox->parent->parent->outertext = $weird_lightbox; } // It's easier to reconstruct the whole thing than remove // duplicate reactive tags - foreach($item['content']->find('.ars-lightbox') as $lightbox) { + foreach ($item['content']->find('.ars-lightbox') as $lightbox) { $lightbox_content = ''; - foreach($lightbox->find('.ars-lightbox-item') as $lightbox_item) { + foreach ($lightbox->find('.ars-lightbox-item') as $lightbox_item) { $img = $lightbox_item->find('img', 0); if ($img != null) { $lightbox_content .= '
' . $img; $caption = $lightbox_item->find('div.pswp-caption-content', 0); - if ($caption != null){ + if ($caption != null) { $credit = $lightbox_item->find('div.ars-gallery-caption-credit', 0); if ($credit != null) { $credit->innertext = 'Credit: ' . $credit->innertext;