mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 15:32:48 +08:00
14 lines
184 B
PHP
14 lines
184 B
PHP
<?php
|
|
|
|
namespace think\migration;
|
|
|
|
use think\console\Output;
|
|
|
|
class NullOutput extends Output
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct('nothing');
|
|
}
|
|
}
|