mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-07-03 23:05:37 +08:00
15 lines
193 B
PHP
15 lines
193 B
PHP
<?php
|
|
|
|
|
|
namespace ZM\MySQL;
|
|
|
|
|
|
class MySQLManager
|
|
{
|
|
/**
|
|
* @return MySQLWrapper
|
|
*/
|
|
public static function getWrapper(): MySQLWrapper {
|
|
return new MySQLWrapper();
|
|
}
|
|
} |