The property yii\db\mysql\ColumnSchema::$disableJsonSupport has been deprecated: Since 2.0.14.1 and will be removed in 2.1.
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the ignore-deprecated annotation
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
5
return new JsonExpression($value, $this->type);
47
}
48
49
return $this->typecast($value);
50
}
51
52
/**
53
* {@inheritdoc}
54
*/
55
5
public function phpTypecast($value)
56
{
57
5
if ($value === null) {
58
5
return null;
59
}
60
61
5
if (!$this->disableJsonSupport && $this->type === Schema::TYPE_JSON) {
The property yii\db\mysql\ColumnSchema::$disableJsonSupport has been deprecated: Since 2.0.14.1 and will be removed in 2.1.
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the ignore-deprecated annotation
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.