mirror of
https://github.com/zhamao-robot/go-cqhttp-adapter-plugin.git
synced 2026-03-17 20:24:51 +08:00
16 lines
225 B
PHP
16 lines
225 B
PHP
<?php
|
|
|
|
namespace GocqAdapter;
|
|
|
|
use OneBot\Util\Singleton;
|
|
|
|
class GocqRetcodeConverter
|
|
{
|
|
use Singleton;
|
|
|
|
public function convertRetCode11To12(int $retcode): int
|
|
{
|
|
return $retcode !== 0 ? 10000 : 0;
|
|
}
|
|
}
|