mirror of
https://github.com/ToxicCrack/PrintABrick.git
synced 2025-05-18 21:20:09 -07:00
13 lines
237 B
PHP
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();
|
|
}
|
|
}
|