public function render()

in app/classes/ReleaseInsights/Json.php [60:68]


    public function render(): void
    {
        if (array_key_exists('error', $this->data)) {
            echo $this->outputError();
        } else {
            $this->jsonp = $_GET['callback'] ?? false;
            echo $this->output();
        }
    }