for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Cycle\Schema\Renderer\MermaidRenderer\Relation;
use Cycle\Schema\Renderer\MermaidRenderer\Relation;
final class MorphedHasOneRelation extends Relation
{
public function __construct(string $parent, string $children, string $comment, bool $isNullable)
parent::__construct($parent, $children, $comment, '-->', $isNullable);
}