add stl mesh
This commit is contained in:
parent
b76b9123e5
commit
54e0faabc3
38 changed files with 4427 additions and 29 deletions
15
src/Repository/StlMeshRepositoryQuery.php
Normal file
15
src/Repository/StlMeshRepositoryQuery.php
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
|
||||
namespace App\Repository;
|
||||
|
||||
use App\Core\Repository\RepositoryQuery;
|
||||
use Knp\Component\Pager\PaginatorInterface;
|
||||
use App\Repository\StlMeshRepository as Repository;
|
||||
|
||||
class StlMeshRepositoryQuery extends RepositoryQuery
|
||||
{
|
||||
public function __construct(Repository $repository, PaginatorInterface $paginator)
|
||||
{
|
||||
parent::__construct($repository, 's', $paginator);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue