Files
tougao/vendor/phpoffice/math/src/Math/Reader/ReaderInterface.php
wangjinlei 881ac3e056 1
2024-07-17 09:23:45 +08:00

11 lines
147 B
PHP

<?php
namespace PhpOffice\Math\Reader;
use PhpOffice\Math\Math;
interface ReaderInterface
{
public function read(string $content): ?Math;
}