| 1 | <?php |
||
| 14 | trait DeployBuilder |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var string |
||
| 18 | */ |
||
| 19 | private $deployCustomFilePath = 'deploy.yml'; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | private $deployExecutableFilePath = 'deploy.php'; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Method description:getConfigFullPath. |
||
| 28 | * |
||
| 29 | * @author reallyli <[email protected]> |
||
| 30 | * @return string |
||
| 31 | * 返回值类型:string,array,object,mixed(多种,不确定的),void(无返回值) |
||
| 32 | */ |
||
| 33 | public function getConfigFullPath() : string |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Method description:getDeployFileFullPath. |
||
| 40 | * |
||
| 41 | * @author reallyli <[email protected]> |
||
| 42 | * @since 18/9/28 |
||
| 43 | * @return mixed |
||
| 44 | * 返回值类型:string,array,object,mixed(多种,不确定的),void(无返回值) |
||
| 45 | */ |
||
| 46 | public function getDeployFileFullPath() |
||
| 56 | |||
| 57 | /** |
||
| 58 | * Method description:getTestingDeployFileFullPath. |
||
| 59 | * |
||
| 60 | * @author reallyli <[email protected]> |
||
| 61 | * @since 18/9/28 |
||
| 62 | * @return mixed |
||
| 63 | * 返回值类型:string,array,object,mixed(多种,不确定的),void(无返回值) |
||
| 64 | */ |
||
| 65 | public function getTestingDeployFileFullPath() : string |
||
| 69 | |||
| 70 | /** |
||
| 71 | * Method description:. |
||
| 72 | * |
||
| 73 | * @author reallyli <[email protected]> |
||
| 74 | * @since 18/9/28 |
||
| 75 | * @return string |
||
| 76 | * 返回值类型:string,array,object,mixed(多种,不确定的),void(无返回值) |
||
| 77 | */ |
||
| 78 | private function getTestingConfigFullPath() : string |
||
| 82 | } |
||
| 83 |