Curlyspoon/core

View on GitHub
src/Contracts/Element.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Curlyspoon\Core\Contracts;

interface Element
{
    public function __construct(array $options = []);

    public function render(): string;

    public function toString(): string;

    public function __toString(): string;
}