Files
zhamao-framework/src/Custom/Connection/CustomConnection.php

14 lines
182 B
PHP
Raw Normal View History

2020-03-02 16:14:20 +08:00
<?php
namespace Custom\Connection;
use ZM\Connection\WSConnection;
class CustomConnection extends WSConnection
{
public function getType() {
return "custom";
}
}