murph-core/src/core/Factory/RedirectFactory.php
2023-10-12 16:15:07 +02:00

14 lines
209 B
PHP

<?php
namespace App\Core\Factory;
use App\Core\Entity\Redirect as Entity;
class RedirectFactory implements FactoryInterface
{
public function create(): Entity
{
return new Entity();
}
}