Total Complexity | 2 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
15 | class ColumnSchema extends \yii\db\ColumnSchema |
||
16 | { |
||
17 | /** |
||
18 | * @var bool whether this column is a computed column |
||
19 | * @since 2.0.39 |
||
20 | */ |
||
21 | public $isComputed; |
||
22 | |||
23 | |||
24 | /** |
||
25 | * Prepares default value and converts it according to [[phpType]] |
||
26 | * @param mixed $value default value |
||
27 | * @return mixed converted value |
||
28 | * @since 2.0.24 |
||
29 | */ |
||
30 | public function defaultPhpTypecast($value) |
||
40 |