Files
phinx-generate-migrations/app/src/Concept/Generator.php

9 lines
186 B
PHP
Raw Normal View History

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