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ů.
|
- <?php
-
- namespace common\logic\ProducerPriceRange;
-
- use common\logic\BaseService;
- use common\logic\RepositoryInterface;
- use common\models\ProducerPriceRange;
-
- class ProducerPriceRangeRepository extends BaseService implements RepositoryInterface
- {
- public function query()
- {
- return ProducerPriceRange::find()->orderBy('range_begin ASC');
- }
- }
|