Gets the parsed JSON output.
mixed The decoded JSON output or NULL if there isn't any.
public function parseJsonOutput() : mixed { $output = $this->getOutput(); if ($output) { return json_decode(trim(implode('', $output)), TRUE, flags: JSON_THROW_ON_ERROR); } return NULL; }