Total Complexity | 2 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | trait TalentCloudCrudTrait |
||
10 | { |
||
11 | use CrudTrait; |
||
12 | |||
13 | /** |
||
14 | * Override for existing isColumnNullable static function on the CrudTrait. Current |
||
15 | * implementation doesn't allow for other custom column types outside of what's defined in |
||
16 | * Backpack. |
||
17 | * |
||
18 | * @param string $column_name Name of the column to check. |
||
19 | * |
||
20 | * @return boolean |
||
1 ignored issue
–
show
|
|||
21 | */ |
||
22 | public static function isColumnNullable(string $column_name) : bool |
||
40 |