deblan.io-murph/src/Factory/StlMeshFactory.php
2021-07-09 23:42:38 +02:00

15 lines
236 B
PHP

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