// +---------------------------------------------------------------------- // | phpMore [ WE CAN DO IT MORE ] // +---------------------------------------------------------------------- // | Copyright (c) 20011~2019 广州务商网络科技有限公司 All rights reserved.
// +---------------------------------------------------------------------- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 ) // +---------------------------------------------------------------------- // | Author: sujunli 4297088@qq.com // +----------------------------------------------------------------------
RedisConfigLoadBo |
<?php
/**
* // +----------------------------------------------------------------------
* // | phpMore [ WE CAN DO IT MORE ]
* // +----------------------------------------------------------------------
* // | Copyright (c) 20011~2019 广州务商网络科技有限公司 All rights reserved.
* // +----------------------------------------------------------------------
* // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
* // +----------------------------------------------------------------------
* // | Author: sujunli <4297088@qq.com>
* // +----------------------------------------------------------------------
*/
namespace cn\gz53\framework\model\bo\init\redis;
use cn\gz53\framework\dao\env\EnvCheckMainDeployPathGetDaoI;
use cn\gz53\framework\dao\redis\RedisConfigLoadDaoI;
use cn\gz53\framework\dao\redis\RedisConfigStoreDaoI;
use cn\gz53\framework\model\bo\Bo;
class RedisConfigLoadBo extends Bo implements EnvCheckMainDeployPathGetDaoI, RedisConfigLoadDaoI, RedisConfigStoreDaoI
{
private $mainDeployPath;
private $config;
public function getMainDeployPath(){
return $this->mainDeployPath;
}
public function setMainDeployPath($mainDeployPath){
$this->mainDeployPath = $mainDeployPath;
}
public function getConfig(){
return $this->config;
}
public function setConfig($config){
$this->config = $config;
}
}