go-cqhttp-adapter-plugin/src/GocqRetcodeConverter.php

16 lines
225 B
PHP
Raw Normal View History

2023-01-13 15:55:52 +08:00
<?php
namespace GocqAdapter;
use OneBot\Util\Singleton;
class GocqRetcodeConverter
{
use Singleton;
public function convertRetCode11To12(int $retcode): int
{
return $retcode !== 0 ? 10000 : 0;
}
}