Files
ulthon_admin/extend/think/migration/NullOutput.php

14 lines
184 B
PHP

<?php
namespace think\migration;
use think\console\Output;
class NullOutput extends Output
{
public function __construct()
{
parent::__construct('nothing');
}
}