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 SingleInheritanceRelation extends Relation
{
public function __construct(string $parent, string $children, bool $isNullable)
parent::__construct($parent, $children, 'STI', '--|>', $isNullable);
}