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

ProducerPriceRangeRepositoryQuery.php 549B

123456789101112131415161718
  1. <?php
  2. namespace common\logic\Producer\ProducerPriceRange\Repository;
  3. use common\logic\AbstractRepositoryQuery;
  4. use common\logic\Producer\ProducerPriceRange\Model\ProducerPriceRange;
  5. use common\logic\Producer\ProducerPriceRange\Service\ProducerPriceRangeDefinition;
  6. use yii\db\ActiveQuery;
  7. class ProducerPriceRangeRepositoryQuery extends AbstractRepositoryQuery
  8. {
  9. protected ProducerPriceRangeDefinition $definition;
  10. public function loadDependencies(): void
  11. {
  12. $this->loadDefinition(ProducerPriceRangeDefinition::class);
  13. }
  14. }