chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
<?php
namespace Mautic\PageBundle\Event;
use Mautic\CoreBundle\Event\CommonEvent;
use Mautic\PageBundle\Entity\Page;
class PageEvent extends CommonEvent
{
/**
* @param bool $isNew
*/
public function __construct(Page $page, $isNew = false)
{
$this->entity = $page;
$this->isNew = $isNew;
}
/**
* Returns the Page entity.
*
* @return Page
*/
public function getPage()
{
return $this->entity;
}
/**
* Sets the Page entity.
*/
public function setPage(Page $page): void
{
$this->entity = $page;
}
}