mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-07-04 23:35:35 +08:00
14 lines
182 B
PHP
14 lines
182 B
PHP
<?php
|
|
|
|
|
|
namespace Custom\Connection;
|
|
|
|
|
|
use ZM\Connection\WSConnection;
|
|
|
|
class CustomConnection extends WSConnection
|
|
{
|
|
public function getType() {
|
|
return "custom";
|
|
}
|
|
} |