11 lines
147 B
PHP
11 lines
147 B
PHP
<?php
|
|
|
|
namespace PhpOffice\Math\Reader;
|
|
|
|
use PhpOffice\Math\Math;
|
|
|
|
interface ReaderInterface
|
|
{
|
|
public function read(string $content): ?Math;
|
|
}
|