Final Class Yiisoft\Db\Migration\Informer\NullMigrationInformer
| Inheritance | Yiisoft\Db\Migration\Informer\NullMigrationInformer |
|---|---|
| Implements | Yiisoft\Db\Migration\Informer\MigrationInformerInterface |
Ignores migration process informational messages.
Public Methods
Method Details
| public void beginCommand ( string $message ) | ||
| $message | string | |
public function beginCommand(string $message): void
{
// do nothing
}
| public void beginCreateHistoryTable ( string $message ) | ||
| $message | string | |
public function beginCreateHistoryTable(string $message): void
{
// do nothing
}
| public void endCommand ( string $message ) | ||
| $message | string | |
public function endCommand(string $message): void
{
// do nothing
}
| public void endCreateHistoryTable ( string $message ) | ||
| $message | string | |
public function endCreateHistoryTable(string $message): void
{
// do nothing
}
Signup or Login in order to comment.