mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-25 03:01:21 +08:00
updated phpdoc and classmap
This commit is contained in:
@@ -32,4 +32,4 @@ interface MigrationInterface
|
||||
* and should not proceed further. All other return values mean the migration succeeds.
|
||||
*/
|
||||
public function down();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -25,6 +25,10 @@ use yii\caching\GroupDependency;
|
||||
* @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.
|
||||
* @property string $transactionIsolationLevel The transaction isolation level to use for this transaction.
|
||||
* This can be one of [[Transaction::READ_UNCOMMITTED]], [[Transaction::READ_COMMITTED]],
|
||||
* [[Transaction::REPEATABLE_READ]] and [[Transaction::SERIALIZABLE]] but also a string containing DBMS specific
|
||||
* syntax to be used after `SET TRANSACTION ISOLATION LEVEL`. This property is write-only.
|
||||
*
|
||||
* @author Qiang Xue <qiang.xue@gmail.com>
|
||||
* @since 2.0
|
||||
|
||||
@@ -32,6 +32,10 @@ use yii\base\InvalidConfigException;
|
||||
*
|
||||
* @property boolean $isActive Whether this transaction is active. Only an active transaction can [[commit()]]
|
||||
* or [[rollBack()]]. This property is read-only.
|
||||
* @property string $isolationLevel The transaction isolation level to use for this transaction. This can be
|
||||
* one of [[READ_UNCOMMITTED]], [[READ_COMMITTED]], [[REPEATABLE_READ]] and [[SERIALIZABLE]] but also a string
|
||||
* containing DBMS specific syntax to be used after `SET TRANSACTION ISOLATION LEVEL`. This property is
|
||||
* write-only.
|
||||
*
|
||||
* @author Qiang Xue <qiang.xue@gmail.com>
|
||||
* @since 2.0
|
||||
|
||||
@@ -16,6 +16,9 @@ use yii\db\Transaction;
|
||||
/**
|
||||
* Schema is the class for retrieving metadata from a SQLite (2/3) database.
|
||||
*
|
||||
* @property string $transactionIsolationLevel The transaction isolation level to use for this transaction.
|
||||
* This can be either [[Transaction::READ_UNCOMMITTED]] or [[Transaction::SERIALIZABLE]].
|
||||
*
|
||||
* @author Qiang Xue <qiang.xue@gmail.com>
|
||||
* @since 2.0
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user