From 4488dbbff72bde59d343903508b5841e57f47d5a Mon Sep 17 00:00:00 2001 From: Qiang Xue Date: Sun, 10 May 2015 13:29:32 -0400 Subject: [PATCH] build cleanup [skip ci] --- framework/classes.php | 1 + framework/db/Schema.php | 2 ++ 2 files changed, 3 insertions(+) diff --git a/framework/classes.php b/framework/classes.php index 454422a1a03..f8364cd35d4 100644 --- a/framework/classes.php +++ b/framework/classes.php @@ -233,6 +233,7 @@ 'yii\validators\CompareValidator' => YII2_PATH . '/validators/CompareValidator.php', 'yii\validators\DateValidator' => YII2_PATH . '/validators/DateValidator.php', 'yii\validators\DefaultValueValidator' => YII2_PATH . '/validators/DefaultValueValidator.php', + 'yii\validators\EachValidator' => YII2_PATH . '/validators/EachValidator.php', 'yii\validators\EmailValidator' => YII2_PATH . '/validators/EmailValidator.php', 'yii\validators\ExistValidator' => YII2_PATH . '/validators/ExistValidator.php', 'yii\validators\FileValidator' => YII2_PATH . '/validators/FileValidator.php', diff --git a/framework/db/Schema.php b/framework/db/Schema.php index 8dfb68ec396..2da3f989990 100644 --- a/framework/db/Schema.php +++ b/framework/db/Schema.php @@ -22,6 +22,8 @@ * @property string $lastInsertID The row ID of the last row inserted, or the last value retrieved from the * sequence object. This property is read-only. * @property QueryBuilder $queryBuilder The query builder for this connection. This property is read-only. + * @property string[] $schemaNames All schema names in the database, except system schemas. This property is + * read-only. * @property string[] $tableNames All table names in the database. This property is read-only. * @property TableSchema[] $tableSchemas The metadata for all tables in the database. Each array element is an * instance of [[TableSchema]] or its child class. This property is read-only.