for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/**
* Spiral Framework.
*
* @license MIT
* @author Anton Titov (Wolfy-J)
*/
namespace Cycle\Schema\Visitor;
use Cycle\Schema\Builder;
use Cycle\Schema\Definition\Entity;
use Cycle\Schema\VisitorInterface;
class GenerateTable implements VisitorInterface
{
* Generate table schema based on given entity definition.
* @param Builder $builder
* @param Entity $entity
public function compute(Builder $builder, Entity $entity)
}