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

11 lines
144 B
PHP

<?php
namespace PhpOffice\Math\Writer;
use PhpOffice\Math\Math;
interface WriterInterface
{
public function write(Math $math): string;
}