opsdash-app/opsdash/tests/php/stubs/Sabre/VObject/Reader.php
2026-03-07 11:50:43 +07:00

11 lines
153 B
PHP

<?php
declare(strict_types=1);
namespace Sabre\VObject;
final class Reader {
public static function read(string $input): mixed {
return null;
}
}