Fixed comment [skip ci]

This commit is contained in:
Chris Harris
2016-02-20 16:06:17 -08:00
parent 454b90a3f5
commit c50ba2e800
2 changed files with 2 additions and 2 deletions

View File

@@ -8,8 +8,8 @@ Yii Framework 2 Change Log
- Enh #10451: Check of existence of `$_SERVER` in `\yii\web\Request` before using it (quantum13)
- Enh #10610: Added `BaseUrl::$urlManager` to be able to set URL manager used for creating URLs (samdark)
- Enh #10764: `yii\helpers\Html::tag()` and `::beginTag()` return content without any HTML when the `$tag` attribute is `false` or `null` (pana1990)
- Enh #10889: Allows unsigned primary key column definitions (df2)
- Chg: HTMLPurifier dependency updated to ~4.7.0 (samdark)
- Enh #10889: Allows unsigned primary key column definitions (df2)
- Chg #10921: Inverts responsibility of database specific column schema builder classes (df2)
- Enh #9562: Adds `char` datatype to framework (df2)
- Enh #9340: Adds `after()` and `first()` column schema builder modifiers (df2)

View File

@@ -72,7 +72,7 @@ class ColumnSchemaBuilder extends Object
*/
protected $isFirst;
/**
* @var array mapping of type categories (keys) to abstract column types (values).
* @var array mapping of abstract column types (keys) to type categories (values).
*/
public $categoryMap = [
Schema::TYPE_PK => self::CAT_PK,