File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 2727 */
2828class DbModel extends BaseObject
2929{
30- // primary key attribute name
31- public string $ pkName ;
30+ /**
31+ * @var string primary key attribute name
32+ */
33+ public $ pkName ;
3234
3335 // model name
3436 public string $ name ;
Original file line number Diff line number Diff line change 1010trait ForeignKeyConstraints
1111{
1212 /**
13+ * @var string
1314 * Contains foreign key constraint
1415 * @example 'SET NULL'
1516 * @example 'CASCADE'
1617 */
17- public string $ onDeleteFkConstraint ;
18+ public $ onDeleteFkConstraint ;
1819
1920 /**
21+ * @var string
2022 * Contains foreign key constraint
2123 * @example 'SET NULL'
2224 * @example 'CASCADE'
2325 */
24- public string $ onUpdateFkConstraint ;
26+ public $ onUpdateFkConstraint ;
2527}
You can’t perform that action at this time.
0 commit comments