9 lines
186 B
PHP
9 lines
186 B
PHP
<?php
|
|
namespace ProVM\Concept;
|
|
|
|
use Symfony\Component\Console\Style\StyleInterface;
|
|
|
|
interface Generator
|
|
{
|
|
public function generate(StyleInterface $io, bool $dryRun = false): void;
|
|
} |