add settings panel
Signed-off-by: Simon Vieille <simon@deblan.fr>
This commit is contained in:
parent
46679ec638
commit
aafa87ed41
17 changed files with 569 additions and 1 deletions
21
core/Repository/SettingRepository.php
Normal file
21
core/Repository/SettingRepository.php
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
<?php
|
||||
|
||||
namespace App\Core\Repository;
|
||||
|
||||
use App\Core\Entity\Setting;
|
||||
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
|
||||
use Doctrine\Persistence\ManagerRegistry;
|
||||
|
||||
/**
|
||||
* @method Setting|null find($id, $lockMode = null, $lockVersion = null)
|
||||
* @method Setting|null findOneBy(array $criteria, array $orderBy = null)
|
||||
* @method Setting[] findAll()
|
||||
* @method Setting[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
|
||||
*/
|
||||
class SettingRepository extends ServiceEntityRepository
|
||||
{
|
||||
public function __construct(ManagerRegistry $registry)
|
||||
{
|
||||
parent::__construct($registry, Setting::class);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue