revert copyright

This commit is contained in:
crazywhalecc
2023-03-18 17:34:08 +08:00
parent 4eee09c390
commit 7b8b829c21
17 changed files with 29 additions and 16 deletions

View File

@@ -0,0 +1,13 @@
<?php
declare(strict_types=1);
namespace SPC\builder\traits;
/**
* 仅供 Command 使用,如果使用了该 Trait则在执行对应命令时不打印 motd
*/
trait NoMotdTrait
{
protected bool $no_motd = true;
}