for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Cycle\Annotated\Annotation\Relation\Morphed;
final class BelongsToMorphed
{
public function __construct(
string $target,
bool $cascade = true,
bool $nullable = true,
string $innerKey = '{relationName}_{outerKey}',
string $outerKey = null,
string $morphKey = '{relationName}_role',
int $morphKeyLength = 32,
bool $indexCreate = true,
// Inverse $inverse = null, // can be uncommented for compatibility with php 8.1
) {
}