Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- <?php
-
- namespace Lc\SovBundle\Repository\Reminder;
-
- /**
- * class ReminderStore.
- *
- * @author Simon Vieille <simon@deblan.fr>
- */
- class ReminderStore
- {
- protected ReminderRepositoryQuery $query;
-
- public function __construct(ReminderRepositoryQuery $query)
- {
- $this->query = $query;
- }
-
- public function getFoo($query = null)
- {
- if (!$query) {
- $query = $this->query->create();
- }
-
- return $query
- ->useCustomFilters()
- ->andWhere('.description = :description')
- ->setParameter(':description', 'ahah')
- ->findOne();
- }
- }
|