$this->systemStatistics->getSystemStatistics(true, true) ]; return new JSONResponse($data); } /** * @NoCSRFRequired */ public function phpinfo(): Response { if ($this->config->getAppValue($this->appName, 'phpinfo', 'no') === 'yes') { return new PhpInfoResponse(); } return new NotFoundResponse(); } }