選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

15 行
350B

  1. <?php
  2. namespace domain\Producer\ProducerPriceRange;
  3. use domain\_\AbstractRepositoryQuery;
  4. class ProducerPriceRangeRepositoryQuery extends AbstractRepositoryQuery
  5. {
  6. protected ProducerPriceRangeDefinition $definition;
  7. public function loadDependencies(): void
  8. {
  9. $this->loadDefinition(ProducerPriceRangeDefinition::class);
  10. }
  11. }