PhpGitHooks\Module\Configuration\Contract\Response\ConfigurationDataResponse::__construct PHP Метод

__construct() публичный Метод

ConfigurationDataResponse constructor.
public __construct ( PreCommitResponse $preCommit, CommitMsgResponse $commitMsg, PrePushResponse $prePush )
$preCommit PreCommitResponse
$commitMsg CommitMsgResponse
$prePush PrePushResponse
    public function __construct(PreCommitResponse $preCommit, CommitMsgResponse $commitMsg, PrePushResponse $prePush)
    {
        $this->preCommit = $preCommit;
        $this->commitMsg = $commitMsg;
        $this->prePush = $prePush;
    }