brokencube/automatorm

View on GitHub
src/Interfaces/SchemaGenerator.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
namespace Automatorm\Interfaces;

use Automatorm\Interfaces\Connection as ConnectionInterface;

interface SchemaGenerator
{
    public function __construct(ConnectionInterface $connection);
    
    public function generate();
}