Closed Bockiii closed 1 month ago
Hey,
should have run the checks :(
This is the original content of the bridge
<?php class ForensicArchitectureBridge extends BridgeAbstract { const NAME = 'Forensic Architecture'; const URI = 'https://forensic-architecture.org/'; const DESCRIPTION = 'Generates content feeds from forensic-architecture.org'; const MAINTAINER = 'tillcash'; public function collectData() { $url = 'https://forensic-architecture.org/api/fa/v1/investigations'; $jsonData = json_decode(getContents($url)); foreach ($jsonData->investigations as $investigation) { $this->items[] = [ 'content' => $investigation->abstract, 'timestamp' => $investigation->publication_date, 'title' => $investigation->title, 'uid' => $investigation->id, 'uri' => self::URI . 'investigation/' . $investigation->slug, ]; } } }
Please create a new PR so we can run the tests and integration again. Thanks
last change: Wednesday 2024-10-16 17:21:38
Hey,
should have run the checks :(
This is the original content of the bridge
Please create a new PR so we can run the tests and integration again. Thanks