| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 36 | protected function convertParameters($firstResult, $parameters) |
||
| 37 | { |
||
| 38 | $this->criteria->orderBy = array(); |
||
| 39 | // run default simple parameters converting |
||
| 40 | parent::convertParameters($firstResult, $parameters); |
||
| 41 | |||
| 42 | if (array_key_exists('locale', $parameters)) { |
||
| 43 | $this->criteria->locale = $parameters['locale']; |
||
| 44 | } |
||
| 45 | } |
||
| 46 | } |
||
| 47 |