<?php
/**
* * * * * * * *<4297088@qq.com>
* */
namespace cn\gz53\framework\model\po\cli;
use cn\gz53\framework\model\po\Po;
use cn\gz53\framework\sdk\file\IncludeSdkI;
class CliServerConfigFileLoadPo extends Po implements IncludeSdkI
{
const CONFIG_FILE = "/cli.php";
private $mainDeployPath;
private $includeData;
public function getIncludeFilename(){
return $this->mainDeployPath . self::CONFIG_FILE;
}
public function setMainDeployPath($mainDeployPath){
$this->mainDeployPath = $mainDeployPath;
}
public function getIncludeData(){
return $this->includeData;
}
public function setIncludeData($includeData){
$this->includeData = $includeData;
}
}