SYMBOL INDEX (323 symbols across 111 files) FILE: api-gateway/app/Constants/ErrorCode.php class ErrorCode (line 13) | class ErrorCode extends AbstractConstants FILE: api-gateway/app/Constants/ResponseCode.php class ResponseCode (line 12) | class ResponseCode extends AbstractConstants FILE: api-gateway/app/Controller/AbstractController.php class AbstractController (line 12) | abstract class AbstractController FILE: api-gateway/app/Controller/AuthController.php class AuthController (line 20) | #[Controller(prefix: '/Auth')] method Login (line 35) | #[GetMapping(path: 'Login')] method Logout (line 49) | #[GetMapping(path: 'Logout')] FILE: api-gateway/app/Controller/CircuitBreakerController.php class CircuitBreakerController (line 18) | #[Controller(prefix: '/CircuitBreaker')] method test (line 33) | #[GetMapping(path: 'Test')] method circuitBreakerFallback (line 46) | public function circuitBreakerFallback() FILE: api-gateway/app/Controller/CommonController.php class CommonController (line 10) | class CommonController extends AbstractController method success (line 12) | public function success($data = []) FILE: api-gateway/app/Controller/ConfigController.php class ConfigController (line 16) | #[Controller(prefix: '/Config')] method test (line 25) | #[GetMapping(path: 'Test')] FILE: api-gateway/app/Controller/FileController.php class FileController (line 18) | #[Controller(prefix: '/File')] method uploadFile (line 33) | #[PostMapping(path: 'UploadFile')] FILE: api-gateway/app/Controller/OrderController.php class OrderController (line 19) | #[Controller(prefix: '/Order')] method orderList (line 34) | #[GetMapping(path: 'OrderList')] method createOrder (line 48) | #[PostMapping(path: 'CreateOrder')] method orderRabbitMQ (line 84) | #[GetMapping(path: 'OrderRabbitMQ')] FILE: api-gateway/app/Controller/RateLimitController.php class RateLimitController (line 16) | #[Controller(prefix: '/RateLimit')] method test (line 24) | #[GetMapping(path: 'Test')] FILE: api-gateway/app/Controller/UserController.php class UserController (line 18) | #[Controller(prefix: '/User')] method userInfo (line 33) | #[GetMapping(path: 'UserInfo')] method userBonusList (line 47) | #[GetMapping(path: 'UserBonusList')] method userStoredList (line 61) | #[GetMapping(path: 'UserStoredList')] method userRabbitMQ (line 75) | #[GetMapping(path: 'UserRabbitMQ')] FILE: api-gateway/app/Exception/BusinessException.php class BusinessException (line 11) | class BusinessException extends ServerException method __construct (line 13) | public function __construct(int $code = 0, string $message = null, Thr... FILE: api-gateway/app/Exception/Handler/AppExceptionHandler.php class AppExceptionHandler (line 13) | class AppExceptionHandler extends ExceptionHandler method handle (line 20) | public function handle(Throwable $throwable, ResponseInterface $response) method isValid (line 25) | public function isValid(Throwable $throwable): bool FILE: api-gateway/app/Exception/Handler/AppServiceExceptionHandler.php class AppServiceExceptionHandler (line 26) | class AppServiceExceptionHandler extends ExceptionHandler method handle (line 28) | public function handle(Throwable $throwable, ResponseInterface $response) method isValid (line 52) | public function isValid(Throwable $throwable): bool FILE: api-gateway/app/Exception/Handler/RateLimitExceptionHandler.php class RateLimitExceptionHandler (line 27) | class RateLimitExceptionHandler extends ExceptionHandler method handle (line 29) | public function handle(Throwable $throwable, ResponseInterface $response) method isValid (line 52) | public function isValid(Throwable $throwable): bool FILE: api-gateway/app/Exception/ServiceException.php class ServiceException (line 11) | class ServiceException extends ServerException method __construct (line 13) | public function __construct(int $code = 0, string $message = null, Thr... FILE: api-gateway/app/JsonRpc/FileRpcServiceInterface.php type FileRpcServiceInterface (line 10) | interface FileRpcServiceInterface method uploadFile (line 13) | public function uploadFile(string $type, string $base64string, string ... FILE: api-gateway/app/JsonRpc/OrderRpcServiceInterface.php type OrderRpcServiceInterface (line 10) | interface OrderRpcServiceInterface method orderList (line 13) | public function orderList(int $userId) : array; method createOrder (line 15) | public function createOrder(array $data) : array; method orderRabbitMQ (line 17) | public function orderRabbitMQ(): array; FILE: api-gateway/app/JsonRpc/UserRpcServiceInterface.php type UserRpcServiceInterface (line 10) | interface UserRpcServiceInterface method userInfo (line 13) | public function userInfo(int $userId): array; method userBonusList (line 15) | public function userBonusList(int $page, int $pageSize): array; method userStoredList (line 17) | public function userStoredList(int $page, int $pageSize): array; method userRabbitMQ (line 19) | public function userRabbitMQ(): array; method userLogin (line 21) | public function userLogin(string $phone): array; method userLogout (line 23) | public function userLogout(string $token): array; method userCheckToken (line 25) | public function userCheckToken(string $token): array; FILE: api-gateway/app/Kernel/Functions.php function di (line 29) | function di($id = null) function stdLog (line 43) | function stdLog() function logger (line 53) | function logger($name = 'log', $group = 'default') function redis (line 63) | function redis() function cache (line 73) | function cache() function format_throwable (line 85) | function format_throwable(Throwable $throwable): string function responseSuccess (line 93) | function responseSuccess($code, $message = '', $data = []) function responseError (line 103) | function responseError($code, $message = '', $data = []) function isJson (line 121) | function isJson($string) function container (line 132) | function container() function getBearerToken (line 142) | function getBearerToken($Authorization) FILE: api-gateway/app/Listener/DbQueryExecutedListener.php class DbQueryExecutedListener (line 19) | class DbQueryExecutedListener implements ListenerInterface method __construct (line 26) | public function __construct(ContainerInterface $container) method listen (line 31) | public function listen(): array method process (line 41) | public function process(object $event) : void FILE: api-gateway/app/Listener/QueueHandleListener.php class QueueHandleListener (line 21) | class QueueHandleListener implements ListenerInterface method __construct (line 33) | public function __construct(LoggerFactory $loggerFactory, FormatterInt... method listen (line 39) | public function listen(): array method process (line 49) | public function process(object $event) : void FILE: api-gateway/app/Log.php class Log (line 13) | class Log method get (line 15) | public static function get(string $name = 'app') FILE: api-gateway/app/Middleware/UserAuthMiddleware.php class UserAuthMiddleware (line 20) | class UserAuthMiddleware implements MiddlewareInterface method __construct (line 45) | public function __construct(ContainerInterface $container, HttpRespons... method process (line 52) | public function process(ServerRequestInterface $request, RequestHandle... method getBearerToken (line 67) | public function getBearerToken($request) FILE: api-gateway/app/Model/Model.php class Model (line 10) | abstract class Model extends BaseModel implements CacheableInterface FILE: api-gateway/app/Process/AsyncQueueConsumer.php class AsyncQueueConsumer (line 13) | class AsyncQueueConsumer extends ConsumerProcess FILE: api-gateway/app/Services/AuthService.php class AuthService (line 17) | class AuthService method getRpcUserLogin (line 33) | public function getRpcUserLogin(string $phone) method getRpcUserLogout (line 69) | public function getRpcUserLogout(string $token) method getRpcUserCheckToken (line 105) | public function getRpcUserCheckToken(string $token) FILE: api-gateway/app/Services/FileService.php class FileService (line 17) | class FileService method getRpcUploadFile (line 32) | public function getRpcUploadFile($file) FILE: api-gateway/app/Services/OrderService.php class OrderService (line 16) | class OrderService method getRpcOrderList (line 31) | public function getRpcOrderList(int $userId) method rpcCreateOrder (line 67) | public function rpcCreateOrder(array $data) method getRpcOrderRabbitMQ (line 103) | public function getRpcOrderRabbitMQ() FILE: api-gateway/app/Services/UserService.php class UserService (line 17) | class UserService method getRpcUserInfo (line 32) | public function getRpcUserInfo($userId) method getRpcUserBonusList (line 70) | public function getRpcUserBonusList(int $page, int $pageSize) method getRpcUserStoredList (line 107) | public function getRpcUserStoredList(int $page, int $pageSize) method testCircuitBreaker (line 141) | public function testCircuitBreaker() method getRpcUserRabbitMQ (line 155) | public function getRpcUserRabbitMQ() FILE: api-gateway/test/Cases/ExampleTest.php class ExampleTest (line 13) | class ExampleTest extends HttpTestCase method testExample (line 15) | public function testExample() FILE: api-gateway/test/HttpTestCase.php class HttpTestCase (line 18) | abstract class HttpTestCase extends TestCase method __construct (line 25) | public function __construct($name = null, array $data = [], $dataName ... method __call (line 31) | public function __call($name, $arguments) FILE: file-srv/app/Constants/ErrorCode.php class ErrorCode (line 17) | #[Constants] FILE: file-srv/app/Controller/AbstractController.php class AbstractController (line 19) | abstract class AbstractController FILE: file-srv/app/Controller/IndexController.php class IndexController (line 14) | class IndexController extends AbstractController method index (line 16) | public function index() FILE: file-srv/app/Exception/BusinessException.php class BusinessException (line 18) | class BusinessException extends ServerException method __construct (line 20) | public function __construct(int $code = 0, string $message = null, Thr... FILE: file-srv/app/Exception/Handler/AppExceptionHandler.php class AppExceptionHandler (line 20) | class AppExceptionHandler extends ExceptionHandler method __construct (line 22) | public function __construct(protected StdoutLoggerInterface $logger) method handle (line 26) | public function handle(Throwable $throwable, ResponseInterface $response) method isValid (line 33) | public function isValid(Throwable $throwable): bool FILE: file-srv/app/Exception/JsonRpcException.php class JsonRpcException (line 11) | class JsonRpcException extends ServerException method __construct (line 13) | public function __construct(int $code = 0, string $message = null, Thr... FILE: file-srv/app/JsonRpc/FileRpcService.php class FileRpcService (line 21) | #[RpcService(name: "FileRpcService", protocol: "jsonrpc-http", server: "... method uploadFile (line 34) | public function uploadFile(string $type,string $base64string,string $f... FILE: file-srv/app/JsonRpc/FileRpcServiceInterface.php type FileRpcServiceInterface (line 10) | interface FileRpcServiceInterface method uploadFile (line 13) | public function uploadFile(string $type, string $base64string, string ... FILE: file-srv/app/Listener/DbQueryExecutedListener.php class DbQueryExecutedListener (line 22) | #[Listener] method __construct (line 30) | public function __construct(ContainerInterface $container) method listen (line 35) | public function listen(): array method process (line 45) | public function process(object $event): void FILE: file-srv/app/Listener/ResumeExitCoordinatorListener.php class ResumeExitCoordinatorListener (line 20) | #[Listener] method listen (line 23) | public function listen(): array method process (line 30) | public function process(object $event): void FILE: file-srv/app/Log.php class Log (line 13) | class Log method get (line 15) | public static function get(string $name = 'app') FILE: file-srv/app/Model/Model.php class Model (line 18) | abstract class Model extends BaseModel implements CacheableInterface FILE: file-srv/app/Services/FileService.php class FileService (line 14) | class FileService method uploadFile (line 24) | public function uploadFile(string $type,string $base64string,string $f... FILE: file-srv/test/Cases/ExampleTest.php class ExampleTest (line 20) | class ExampleTest extends HttpTestCase method testExample (line 22) | public function testExample() FILE: file-srv/test/HttpTestCase.php class HttpTestCase (line 25) | abstract class HttpTestCase extends TestCase method __construct (line 32) | public function __construct($name = null, array $data = [], $dataName ... method __call (line 38) | public function __call($name, $arguments) FILE: order-srv/app/Amqp/Producer/OrderProducer.php class OrderProducer (line 15) | #[Producer(exchange: 'order', routingKey: 'order')] method __construct (line 18) | public function __construct($data) FILE: order-srv/app/Constants/ErrorCode.php class ErrorCode (line 10) | #[Constants] FILE: order-srv/app/Constants/ResponseCode.php class ResponseCode (line 8) | #[Constants] FILE: order-srv/app/Controller/AbstractController.php class AbstractController (line 12) | abstract class AbstractController FILE: order-srv/app/Controller/SagaController.php class SagaController (line 18) | #[Controller(prefix: '/saga')] method sageCreateOrder (line 33) | #[PostMapping(path: 'sageCreateOrder')] method sageCreateOrderCompensate (line 49) | #[PostMapping(path: 'sageCreateOrderCompensate')] FILE: order-srv/app/Exception/Handler/DtmExceptionHandler.php class DtmExceptionHandler (line 22) | class DtmExceptionHandler extends ExceptionHandler method handle (line 29) | public function handle(Throwable $throwable, ResponseInterface $response) method isValid (line 44) | public function isValid(Throwable $throwable): bool FILE: order-srv/app/Exception/Handler/JsonRpcExceptionHandler.php class JsonRpcExceptionHandler (line 21) | class JsonRpcExceptionHandler extends ExceptionHandler method handle (line 28) | public function handle(Throwable $throwable, ResponseInterface $response) method isValid (line 59) | public function isValid(Throwable $throwable): bool FILE: order-srv/app/Exception/JsonRpcException.php class JsonRpcException (line 11) | class JsonRpcException extends ServerException method __construct (line 13) | public function __construct(int $code = 0, string $message = null, Thr... FILE: order-srv/app/Exception/ServiceException.php class ServiceException (line 11) | class ServiceException extends ServerException method __construct (line 13) | public function __construct(int $code = 0, string $message = null, Thr... FILE: order-srv/app/JsonRpc/OrderRpcService.php class OrderRpcService (line 19) | #[RpcService(name:"OrderRpcService", protocol:"jsonrpc-http", server:"js... method orderList (line 34) | public function orderList(int $userId): array method createOrder (line 47) | public function createOrder(array $data): array method orderRabbitMQ (line 59) | public function orderRabbitMQ() : array FILE: order-srv/app/JsonRpc/OrderRpcServiceInterface.php type OrderRpcServiceInterface (line 10) | interface OrderRpcServiceInterface method orderList (line 13) | public function orderList(int $userId): array; method createOrder (line 15) | public function createOrder(array $data): array; method orderRabbitMQ (line 17) | public function orderRabbitMQ(): array; FILE: order-srv/app/JsonRpc/UserRpcServiceInterface.php type UserRpcServiceInterface (line 10) | interface UserRpcServiceInterface method userInfo (line 13) | public function userInfo(int $userId): array; method userBonusList (line 15) | public function userBonusList(int $page, int $pageSize): array; method userStoredList (line 17) | public function userStoredList(int $page, int $pageSize): array; method userRabbitMQ (line 19) | public function userRabbitMQ(): array; method userLogin (line 21) | public function userLogin(string $phone): array; method userLogout (line 23) | public function userLogout(string $token): array; FILE: order-srv/app/Kernel/Functions.php function di (line 29) | function di($id = null) function stdLog (line 43) | function stdLog() function logger (line 53) | function logger($name = 'log', $group = 'default') function redis (line 63) | function redis() function cache (line 73) | function cache() function format_throwable (line 85) | function format_throwable(Throwable $throwable): string function responseSuccess (line 93) | function responseSuccess($code, $message = '', $data = []) function responseError (line 103) | function responseError($code, $message = '', $data = []) function isJson (line 120) | function isJson($string) function successJsonRpc (line 132) | function successJsonRpc($code, $data) FILE: order-srv/app/Listener/DbQueryExecutedListener.php class DbQueryExecutedListener (line 16) | #[Listener] method __construct (line 24) | public function __construct(ContainerInterface $container) method listen (line 29) | public function listen() : array method process (line 36) | public function process(object $event) : void FILE: order-srv/app/Log.php class Log (line 13) | class Log method get (line 15) | public static function get(string $name = 'app') FILE: order-srv/app/Model/Order.php class Order (line 7) | class Order extends Model method orderGoods (line 29) | public function orderGoods() FILE: order-srv/app/Model/OrderGoods.php class OrderGoods (line 7) | class OrderGoods extends Model FILE: order-srv/app/Services/OrderService.php class OrderService (line 23) | class OrderService method orderList (line 44) | public function orderList($userId) method createOrder (line 89) | public function createOrder($data) method sageCreateOrder (line 135) | public function sageCreateOrder($data) method sageCreateOrderCompensate (line 182) | public function sageCreateOrderCompensate($data) method orderRabbitMQ (line 211) | public function orderRabbitMQ() FILE: order-srv/migrations/2022_06_08_061612_create_order_table.php class CreateOrderTable (line 7) | class CreateOrderTable extends Migration method up (line 12) | public function up(): void method down (line 41) | public function down(): void FILE: order-srv/migrations/2022_06_08_063020_create_order_goods_table.php class CreateOrderGoodsTable (line 7) | class CreateOrderGoodsTable extends Migration method up (line 12) | public function up(): void method down (line 41) | public function down(): void FILE: order-srv/seeders/order_goods_seeder.php class OrderGoodsSeeder (line 7) | class OrderGoodsSeeder extends Seeder method run (line 14) | public function run() FILE: order-srv/seeders/order_seeder.php class OrderSeeder (line 7) | class OrderSeeder extends Seeder method run (line 14) | public function run() FILE: order-srv/test/Cases/ExampleTest.php class ExampleTest (line 13) | class ExampleTest extends HttpTestCase method testExample (line 15) | public function testExample() FILE: order-srv/test/HttpTestCase.php class HttpTestCase (line 18) | abstract class HttpTestCase extends TestCase method __construct (line 25) | public function __construct($name = null, array $data = [], $dataName ... method __call (line 31) | public function __call($name, $arguments) FILE: task-srv/app/Amqp/Consumer/OrderConsumer.php class OrderConsumer (line 18) | #[Consumer(exchange: 'order', routingKey: 'order', queue: 'order', name:... method consumeMessage (line 21) | public function consumeMessage($data, AMQPMessage $message): string FILE: task-srv/app/Amqp/Consumer/UserConsumer.php class UserConsumer (line 18) | #[Consumer(exchange: 'user', routingKey: 'user', queue: 'user', name: "U... method consumeMessage (line 21) | public function consumeMessage($data, AMQPMessage $message): string FILE: task-srv/app/Command/TestCommand.php class TestCommand (line 12) | #[Command] method handle (line 28) | public function handle() FILE: task-srv/app/Controller/AbstractController.php class AbstractController (line 12) | abstract class AbstractController FILE: task-srv/app/Controller/IndexController.php class IndexController (line 7) | class IndexController extends AbstractController method index (line 9) | public function index() FILE: task-srv/app/Exception/Handler/AppExceptionHandler.php class AppExceptionHandler (line 13) | class AppExceptionHandler extends ExceptionHandler method __construct (line 15) | public function __construct(protected StdoutLoggerInterface $logger) method handle (line 19) | public function handle(Throwable $throwable, ResponseInterface $response) method isValid (line 26) | public function isValid(Throwable $throwable): bool FILE: task-srv/app/Listener/DbQueryExecutedListener.php class DbQueryExecutedListener (line 16) | #[Listener] method __construct (line 24) | public function __construct(ContainerInterface $container) method listen (line 29) | public function listen(): array method process (line 39) | public function process(object $event): void FILE: task-srv/app/Listener/QueueHandleListener.php class QueueHandleListener (line 19) | #[Listener] method __construct (line 24) | public function __construct(LoggerFactory $loggerFactory, protected Fo... method listen (line 29) | public function listen(): array method process (line 39) | public function process(object $event): void FILE: task-srv/app/Log.php class Log (line 13) | class Log method get (line 15) | public static function get(string $name = 'app') FILE: task-srv/app/Model/Model.php class Model (line 11) | abstract class Model extends BaseModel implements CacheableInterface FILE: task-srv/app/Process/AsyncQueueConsumer.php class AsyncQueueConsumer (line 10) | #[Process] FILE: task-srv/test/Cases/ExampleTest.php class ExampleTest (line 13) | class ExampleTest extends HttpTestCase method testExample (line 15) | public function testExample() FILE: task-srv/test/HttpTestCase.php class HttpTestCase (line 18) | abstract class HttpTestCase extends TestCase method __construct (line 25) | public function __construct($name = null, array $data = [], $dataName ... method __call (line 31) | public function __call($name, $arguments) FILE: user-srv/app/Amqp/Producer/UserProducer.php class UserProducer (line 15) | #[Producer(exchange: 'user', routingKey: 'user')] method __construct (line 18) | public function __construct($data) FILE: user-srv/app/Constants/ErrorCode.php class ErrorCode (line 13) | class ErrorCode extends AbstractConstants FILE: user-srv/app/Constants/ResponseCode.php class ResponseCode (line 12) | class ResponseCode extends AbstractConstants FILE: user-srv/app/Controller/AbstractController.php class AbstractController (line 12) | abstract class AbstractController FILE: user-srv/app/Controller/SagaController.php class SagaController (line 18) | #[Controller(prefix: '/saga')] method changeStored (line 33) | #[PostMapping(path: 'changeStored')] method changeStoredCompensate (line 53) | #[PostMapping(path: 'changeStoredCompensate')] FILE: user-srv/app/Exception/Handler/DtmExceptionHandler.php class DtmExceptionHandler (line 22) | class DtmExceptionHandler extends ExceptionHandler method handle (line 29) | public function handle(Throwable $throwable, ResponseInterface $response) method isValid (line 44) | public function isValid(Throwable $throwable): bool FILE: user-srv/app/Exception/Handler/JsonRpcExceptionHandler.php class JsonRpcExceptionHandler (line 21) | class JsonRpcExceptionHandler extends ExceptionHandler method handle (line 28) | public function handle(Throwable $throwable, ResponseInterface $response) method isValid (line 59) | public function isValid(Throwable $throwable): bool FILE: user-srv/app/Exception/JsonRpcException.php class JsonRpcException (line 11) | class JsonRpcException extends ServerException method __construct (line 13) | public function __construct(int $code = 0, string $message = null, Thr... FILE: user-srv/app/Exception/ServiceException.php class ServiceException (line 11) | class ServiceException extends ServerException method __construct (line 13) | public function __construct(int $code = 0, string $message = null, Thr... FILE: user-srv/app/JsonRpc/UserRpcService.php class UserRpcService (line 20) | #[RpcService(name: "UserRpcService", protocol: "jsonrpc-http", server: "... method userInfo (line 34) | public function userInfo(int $userId): array method userBonusList (line 48) | public function userBonusList(int $page, int $pageSize): array method userStoredList (line 62) | public function userStoredList(int $page, int $pageSize): array method userRabbitMQ (line 74) | public function userRabbitMQ() : array method userLogin (line 87) | public function userLogin(string $phone): array method userLogout (line 100) | public function userLogout(string $token): array method userCheckToken (line 113) | public function userCheckToken(string $token): array FILE: user-srv/app/JsonRpc/UserRpcServiceInterface.php type UserRpcServiceInterface (line 10) | interface UserRpcServiceInterface method userInfo (line 13) | public function userInfo(int $userId): array; method userBonusList (line 15) | public function userBonusList(int $page, int $pageSize): array; method userStoredList (line 17) | public function userStoredList(int $page, int $pageSize): array; method userRabbitMQ (line 19) | public function userRabbitMQ(): array; method userLogin (line 21) | public function userLogin(string $phone): array; method userLogout (line 23) | public function userLogout(string $token): array; method userCheckToken (line 25) | public function userCheckToken(string $token): array; FILE: user-srv/app/Kernel/Functions.php function di (line 29) | function di($id = null) function stdLog (line 43) | function stdLog() function logger (line 53) | function logger($name = 'log', $group = 'default') function redis (line 63) | function redis() function cache (line 73) | function cache() function format_throwable (line 85) | function format_throwable(Throwable $throwable): string function responseSuccess (line 93) | function responseSuccess($code, $message = '', $data = []) function responseError (line 103) | function responseError($code, $message = '', $data = []) function isJson (line 120) | function isJson($string) function successJsonRpc (line 132) | function successJsonRpc($code, $data) FILE: user-srv/app/Listener/DbQueryExecutedListener.php class DbQueryExecutedListener (line 19) | class DbQueryExecutedListener implements ListenerInterface method __construct (line 26) | public function __construct(ContainerInterface $container) method listen (line 31) | public function listen(): array method process (line 41) | public function process(object $event) : void FILE: user-srv/app/Log.php class Log (line 13) | class Log method get (line 15) | public static function get(string $name = 'app') FILE: user-srv/app/Model/User.php class User (line 11) | class User extends Model implements Authenticatable method bonus (line 45) | public function bonus() method stored (line 50) | public function stored() FILE: user-srv/app/Model/UserBonusLog.php class UserBonusLog (line 9) | class UserBonusLog extends Model FILE: user-srv/app/Model/UserStoredLog.php class UserStoredLog (line 9) | class UserStoredLog extends Model FILE: user-srv/app/Services/AuthService.php class AuthService (line 18) | class AuthService method userLogin (line 29) | public function userLogin($phone) method userLogout (line 57) | public function userLogout($token) method userCheckToken (line 71) | public function userCheckToken($token) FILE: user-srv/app/Services/UserService.php class UserService (line 20) | class UserService method userInfo (line 28) | public function userInfo($userId) method userBonusList (line 53) | public function userBonusList($page, $pageSize) method userStoredList (line 75) | public function userStoredList($page, $pageSize) method changeStored (line 97) | public function changeStored($userId, $amount, $orderNo) method changeStoredCompensate (line 130) | public function changeStoredCompensate($userId, $amount, $orderNo) method userRabbitMQ (line 157) | public function userRabbitMQ() FILE: user-srv/migrations/2022_06_08_072031_create_user_table.php class CreateUserTable (line 7) | class CreateUserTable extends Migration method up (line 12) | public function up(): void method down (line 32) | public function down(): void FILE: user-srv/migrations/2022_06_08_072120_create_user_bonus_log_table.php class CreateUserBonusLogTable (line 7) | class CreateUserBonusLogTable extends Migration method up (line 12) | public function up(): void method down (line 32) | public function down(): void FILE: user-srv/migrations/2022_06_08_072134_create_user_stored_log_table.php class CreateUserStoredLogTable (line 7) | class CreateUserStoredLogTable extends Migration method up (line 12) | public function up(): void method down (line 32) | public function down(): void FILE: user-srv/seeders/user_bonus_log_seeder.php class UserBonusLogSeeder (line 7) | class UserBonusLogSeeder extends Seeder method run (line 14) | public function run() FILE: user-srv/seeders/user_seeder.php class UserSeeder (line 7) | class UserSeeder extends Seeder method run (line 14) | public function run() FILE: user-srv/seeders/user_stored_log_seeder.php class UserStoredLogSeeder (line 7) | class UserStoredLogSeeder extends Seeder method run (line 14) | public function run() FILE: user-srv/test/Cases/ExampleTest.php class ExampleTest (line 13) | class ExampleTest extends HttpTestCase method testExample (line 15) | public function testExample() FILE: user-srv/test/HttpTestCase.php class HttpTestCase (line 18) | abstract class HttpTestCase extends TestCase method __construct (line 25) | public function __construct($name = null, array $data = [], $dataName ... method __call (line 31) | public function __call($name, $arguments)