The property yii\db\mysql\ColumnSchema::$disableJsonSupport has been deprecated with message: Since 2.0.14.1 and will be removed in 2.1.
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.
Loading history...
46
1
return new JsonExpression($value, $this->type);
47
}
48
49
202
return $this->typecast($value);
50
}
51
52
/**
53
* {@inheritdoc}
54
*/
55
330
public function phpTypecast($value)
56
{
57
330
if ($value === null) {
58
328
return null;
59
}
60
61
176
if (!$this->disableJsonSupport && $this->type === Schema::TYPE_JSON) {
The property yii\db\mysql\ColumnSchema::$disableJsonSupport has been deprecated with message: Since 2.0.14.1 and will be removed in 2.1.
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.
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.