deblan.io-murph/core/Factory/Site/NavigationFactory.php

20 lines
342 B
PHP
Raw Normal View History

<?php
namespace App\Core\Factory\Site;
use App\Core\Entity\Site\Navigation;
2021-05-12 12:04:03 +02:00
use App\Core\Factory\FactoryInterface;
/**
* class NavigationFactory.
*
* @author Simon Vieille <simon@deblan.fr>
*/
2021-05-12 12:04:03 +02:00
class NavigationFactory implements FactoryInterface
{
public function create(): Navigation
{
return new Navigation();
}
}