release version 2.0.14

This commit is contained in:
SilverFire - Dmitry Naumenko
2018-02-19 00:27:09 +02:00
parent 089685975a
commit 22832b7c49
81 changed files with 367 additions and 50 deletions

View File

@ -1,4 +1,9 @@
<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace yii\db;
@ -24,7 +29,6 @@ class JsonExpression implements ExpressionInterface
* The value must be compatible with [\yii\helpers\Json::encode()|Json::encode()]] input requirements.
*/
protected $value;
/**
* @var string|null Type of JSON, expression should be casted to. Defaults to `null`, meaning
* no explicit casting will be performed.
@ -33,6 +37,7 @@ class JsonExpression implements ExpressionInterface
*/
protected $type;
/**
* JsonExpression constructor.
*