PhpGitHooks\Module\Configuration\Domain\Config::__construct PHP Method

__construct() public method

Config constructor.
public __construct ( PhpGitHooks\Module\Configuration\Model\HookInterface $preCommit, PhpGitHooks\Module\Configuration\Model\ToolInterface $commitMsg, PhpGitHooks\Module\Configuration\Model\HookInterface $prePush )
$preCommit PhpGitHooks\Module\Configuration\Model\HookInterface
$commitMsg PhpGitHooks\Module\Configuration\Model\ToolInterface
$prePush PhpGitHooks\Module\Configuration\Model\HookInterface
    public function __construct(HookInterface $preCommit, ToolInterface $commitMsg, HookInterface $prePush)
    {
        $this->preCommit = $preCommit;
        $this->commitMsg = $commitMsg;
        $this->prePush = $prePush;
    }