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