Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

21 lines
439B

  1. <?php
  2. namespace common\logic\Setting;
  3. use common\logic\AbstractRepositoryQuery;
  4. class SettingRepositoryQuery extends AbstractRepositoryQuery
  5. {
  6. protected SettingDefinition $definition;
  7. public function loadDependencies(): void
  8. {
  9. $this->loadDefinition(SettingDefinition::class);
  10. }
  11. public function filterByName(string $name): self
  12. {
  13. $this->andWhere(['name' => $name]);
  14. return $this;
  15. }
  16. }