opsdash-app/opsdash/tests/php/stubs/OCP/Server.php
2026-03-07 11:50:43 +07:00

11 lines
144 B
PHP

<?php
declare(strict_types=1);
namespace OCP;
final class Server {
public static function get(string $service): mixed {
return null;
}
}