| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 0 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 31 | public function __construct( |
||
| 32 | public string $target, |
||
| 33 | public array|string|null $innerKey = null, |
||
| 34 | public array|string|null $outerKey = null, |
||
| 35 | /** |
||
| 36 | * @Enum({"NO ACTION", "CASCADE", "SET NULL"}) |
||
| 37 | */ |
||
| 38 | #[ExpectedValues(values: ['NO ACTION', 'CASCADE', 'SET NULL'])] |
||
| 39 | public string $action = 'CASCADE', |
||
| 40 | public bool $indexCreate = true, |
||
| 41 | ) { |
||
| 42 | } |
||
| 44 |