for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Changelog keeper
*
* @link https://github.com/hiqdev/chkipper
* @package chkipper
* @license BSD-3-Clause
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)
*/
namespace hiqdev\chkipper\lib;
* Link class.
* @author Andrii Vasyliev <[email protected]>
class Link
{
protected $_link;
protected $_href;
public function __construct($link, $href)
$this->_link = $link;
$this->_href = $href;
}
public function getLink()
return $this->_link;
public function getHref()
return $this->_href;