| 1 | <?php |
||
| 5 | class ConfigurationDataResponse |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var PreCommitResponse |
||
| 9 | */ |
||
| 10 | private $preCommit; |
||
| 11 | /** |
||
| 12 | * @var CommitMsgResponse |
||
| 13 | */ |
||
| 14 | private $commitMsg; |
||
| 15 | /** |
||
| 16 | * @var PrePushResponse |
||
| 17 | */ |
||
| 18 | private $prePush; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * ConfigurationDataResponse constructor. |
||
| 22 | * @param PreCommitResponse $preCommit |
||
| 23 | * @param CommitMsgResponse $commitMsg |
||
| 24 | * @param PrePushResponse $prePush |
||
| 25 | */ |
||
| 26 | 9 | public function __construct( |
|
| 35 | |||
| 36 | /** |
||
| 37 | * @return PreCommitResponse |
||
| 38 | */ |
||
| 39 | 5 | public function getPreCommit() |
|
| 43 | |||
| 44 | /** |
||
| 45 | * @return CommitMsgResponse |
||
| 46 | */ |
||
| 47 | 3 | public function getCommitMsg() |
|
| 51 | |||
| 52 | /** |
||
| 53 | * @return PrePushResponse |
||
| 54 | */ |
||
| 55 | 4 | public function getPrePush() |
|
| 59 | } |
||
| 60 |