<?php namespace Meibuyu\Micro\CenterConfig\Driver; /** * 配置中心驱动 * @author carlos */ interface DriverInterface { /** * Notes: 拉取配置 * User: carlos * DateTime: 2022/9/9 10:14 * @return mixed */ public function fetchConfig(array $config); /** * Notes: 获取连接 * User: carlos * DateTime: 2022/9/9 10:14 * @return mixed */ public function getClient(); }