From b222c9a0e0caa017545f147874f480b97107e19a Mon Sep 17 00:00:00 2001 From: tillcash Date: Thu, 12 Sep 2024 21:54:28 +0530 Subject: [PATCH] [OneNewThingBridge] fix lint --- bridges/OneNewThingBridge.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bridges/OneNewThingBridge.php b/bridges/OneNewThingBridge.php index 67413414..92e2b885 100644 --- a/bridges/OneNewThingBridge.php +++ b/bridges/OneNewThingBridge.php @@ -25,10 +25,10 @@ class OneNewThingBridge extends BridgeAbstract $contentArray[] = "

Overview

$data->overview

"; $contentArray[] = "

Importance

$data->importance

"; $contentArray[] = "

Historical Context

$data->historicalContext

"; - $contentArray[] = "

Use Cases

"; - $contentArray[] = "

Pros

"; - $contentArray[] = "

Cons

"; - $contentArray[] = "

Key Takeaways

"; + $contentArray[] = '

Use Cases

'; + $contentArray[] = '

Pros

'; + $contentArray[] = '

Cons

'; + $contentArray[] = '

Key Takeaways

'; // Concatenate array elements into a single string $content = implode('', $contentArray);