chore: initial import for test contour with k3s CI

This commit is contained in:
sova-bootstrap
2026-05-28 12:09:28 +03:00
commit d77d0a872f
423 changed files with 35401 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
<?php
namespace App\Repository;
use App\Entity\Department;
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
use Doctrine\Persistence\ManagerRegistry;
/**
* @method Department|null find($id, $lockMode = null, $lockVersion = null)
* @method Department|null findOneBy(array $criteria, array $orderBy = null)
* @method Department[] findAll()
* @method Department[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
*/
class DepartmentRepository extends ServiceEntityRepository
{
public function __construct(ManagerRegistry $registry)
{
parent::__construct($registry, Department::class);
}
}