* @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\Domain\CmsPage\Command; use PrestaShop\PrestaShop\Core\Domain\CmsPage\Exception\CmsPageException; use PrestaShop\PrestaShop\Core\Domain\CmsPage\ValueObject\CmsPageId; /** * Deletes given cms page. */ class DeleteCmsPageCommand { /** * @var CmsPageId */ private $cmsPageId; /** * @param int $cmsPageId * * @throws CmsPageException */ public function __construct($cmsPageId) { $this->cmsPageId = new CmsPageId($cmsPageId); } /** * @return CmsPageId */ public function getCmsPageId() { return $this->cmsPageId; } }