phpmyadmin/libraries/classes/Server/SysInfo/Base.php
Kamil Tekiela 8406f9596a Remove unused properties
Signed-off-by: Kamil Tekiela <tekiela246@gmail.com>
2023-01-24 00:19:53 +00:00

40 lines
678 B
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin\Server\SysInfo;
/**
* Basic SysInfo class not providing any real data.
*/
class Base
{
/**
* Gets load information
*
* @return array<string, int> with load data
*/
public function loadavg(): array
{
return ['loadavg' => 0];
}
/**
* Gets information about memory usage
*
* @return array<string, int> with memory usage data
*/
public function memory(): array
{
return [];
}
/**
* Checks whether class is supported in this environment
*/
public static function isSupported(): bool
{
return true;
}
}