<?php

namespace Lc\SovBundle\Factory\Site;

use Lc\SovBundle\Model\Site\PageInterface;

interface PageFactoryInterface
{
    public function create(): PageInterface;
}