7 lines
112 B
PHP
7 lines
112 B
PHP
<?php
|
|
|
|
namespace Hosterra\FluxBuilder\Type;
|
|
|
|
interface TypeInterface {
|
|
public function __toString(): string;
|
|
}
|