logger = $logger; $this->label = "🧪 " . Piwik::translate("DiagnosticsExtended_PhpUserCheckLabel"); } /** * @return DiagnosticResult[] */ public function execute() { if (SettingsServer::isWindows()|| !function_exists("posix_getuid")) { return []; } if (posix_getuid() === 0) { return [DiagnosticResult::singleResult( $this->label, DiagnosticResult::STATUS_WARNING, Piwik::translate("DiagnosticsExtended_PhpUserCheckWarning") )]; } return []; } }