1 | <?php |
||
19 | class ColumnSchema extends \yii\db\ColumnSchema |
||
20 | { |
||
21 | /** |
||
22 | * @var bool whether the column schema should OMIT using JSON support feature. |
||
23 | * You can use this property to make upgrade to Yii 2.0.14 easier. |
||
24 | * Default to `false`, meaning JSON support is enabled. |
||
25 | * |
||
26 | * @since 2.0.14.1 |
||
27 | * @deprecated Since 2.0.14.1 and will be removed in 2.1. |
||
28 | */ |
||
29 | public $disableJsonSupport = false; |
||
30 | |||
31 | |||
32 | /** |
||
33 | * {@inheritdoc} |
||
34 | */ |
||
35 | 210 | public function dbTypecast($value) |
|
51 | |||
52 | /** |
||
53 | * {@inheritdoc} |
||
54 | */ |
||
55 | 330 | public function phpTypecast($value) |
|
67 | } |
||
68 |
This property has been deprecated. The supplier of the class has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the property will be removed from the class and what other property to use instead.