phplrt/phplrt

View on GitHub
libs/compiler/src/Generator/GeneratableInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace Phplrt\Compiler\Generator;

interface GeneratableInterface extends \Stringable
{
    /**
     * Generates code result as string.
     */
    public function generate(): string;
}