murph-core/src/core/Factory/RedirectFactory.php

14 lines
209 B
PHP
Raw Normal View History

2022-03-13 19:32:32 +01:00
<?php
namespace App\Core\Factory;
use App\Core\Entity\Redirect as Entity;
class RedirectFactory implements FactoryInterface
{
public function create(): Entity
{
return new Entity();
}
}