/home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/Hook
Edit: /home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/Hook/HookDescription.php (2014B)
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
*/
namespace PrestaShop\PrestaShop\Core\Hook;
/**
* Class holds descriptive information about the hook.
*/
final class HookDescription
{
/**
* @var string
*/
private $name;
/**
* @var string
*/
private $title;
/**
* @var string
*/
private $description;
/**
* @param string $name
* @param string $title
* @param string $description
*/
public function __construct($name, $title, $description)
{
$this->name = $name;
$this->title = $title;
$this->description = $description;
}
/**
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* @return string
*/
public function getTitle()
{
return $this->title;
}
/**
* @return string
*/
public function getDescription()
{
return $this->description;
}
}