for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Cycle\Schema\Generator;
use Cycle\Schema\Definition\Entity;
use Cycle\Schema\GeneratorInterface;
use Cycle\Schema\Registry;
/**
* Renders all required relations columns, indexes and foreign keys.
*/
final class RenderRelations implements GeneratorInterface
{
public function run(Registry $registry): Registry
foreach ($registry as $entity) {
$this->compute($registry, $entity);
}
return $registry;
protected function compute(Registry $registry, Entity $entity): void
foreach ($registry->getRelations($entity) as $relation) {
$relation->render($registry);