public function create() : PageInterface
{
$page = new Page();
$page->setHierarchy(0);
$page->setCreatedAt(new \DateTime());
$page->setClientGroups($this->createEmptyCollection());
$page->setShops($this->createEmptyCollection());
$page->setParent(null);
$page->setPublish(true);
$page->setRedirectType(1);
$page->setSection('');
return $page;
}