11 lines
144 B
PHP
11 lines
144 B
PHP
|
<?php
|
||
|
|
||
|
namespace PhpOffice\Math\Writer;
|
||
|
|
||
|
use PhpOffice\Math\Math;
|
||
|
|
||
|
interface WriterInterface
|
||
|
{
|
||
|
public function write(Math $math): string;
|
||
|
}
|