Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- <?php
-
- namespace common\logic\Producer\ProducerPriceRange;
-
- use common\logic\BaseService;
- use common\logic\RepositoryInterface;
-
- class ProducerPriceRangeRepository extends BaseService implements RepositoryInterface
- {
- public function query()
- {
- return ProducerPriceRangeModel::find()->orderBy('range_begin ASC');
- }
- }
|