Skip to content

Commit

Permalink
[DagensNyheterDirektBridge] Lint: short array syntax
Browse files Browse the repository at this point in the history
Fix incorrect line ending
  • Loading branch information
ajain-93 committed Dec 15, 2023
1 parent bcc26d1 commit 389b94f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions bridges/DagensNyheterDirektBridge.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ public function collectData()
}

$this->items[] = [
'uri' => $url;
'title' => $title;
'author' => trim($author);
'timestamp' => $datetime;
'content' => trim($article_html);
'uri' => $url,
'title' => $title,
'author' => trim($author),
'timestamp' => $datetime,
'content' => trim($article_html),
];

if (count($this->items) > self::LIMIT)
Expand Down

0 comments on commit 389b94f

Please sign in to comment.