1
0
mirror of https://github.com/ToxicCrack/PrintABrick.git synced 2025-05-18 21:20:09 -07:00
PrintABrick/src/AppBundle/Manager/RebrickableManager.php
2017-04-11 17:30:20 +02:00

13 lines
237 B
PHP

<?php
namespace AppBundle\Manager;
use AppBundle\Entity\Rebrickable\Theme;
class RebrickableManager extends BaseManager
{
public function findAllThemes() {
return $this->em->getRepository(Theme::class)->findAll();
}
}