deblan.io-murph/core/Factory/Site/NavigationFactory.php
Simon Vieille 40ed84dea3 init murph
Signed-off-by: Simon Vieille <simon@deblan.fr>
2021-03-24 19:10:26 +01:00

19 lines
275 B
PHP

<?php
namespace App\Core\Factory\Site;
use App\Core\Entity\Site\Navigation;
/**
* class NavigationFactory.
*
* @author Simon Vieille <simon@deblan.fr>
*/
class NavigationFactory
{
public function create(): Navigation
{
return new Navigation();
}
}