murph-skeleton/core/Factory/RedirectFactory.php

15 lines
248 B
PHP
Raw Normal View History

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