| Total Complexity | 3 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | abstract class AFrameFactory implements IFrameFactory |
||
| 14 | { |
||
| 15 | public static function create(string $sequence, ?int $width = null): IFrame |
||
| 21 | ); |
||
| 22 | } |
||
| 23 | |||
| 24 | public static function createEmpty(): IFrame |
||
| 25 | { |
||
| 26 | return new Frame('', 0); |
||
| 27 | } |
||
| 28 | |||
| 29 | public static function createSpace(): IFrame |
||
| 32 | } |
||
| 33 | } |
||
| 34 |