12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace common\components;
- use yii\db\Connection;
- use yii\db\Query;
- class ActiveQuery extends \yii\db\ActiveQuery
- {
-
- public function oneOrFail($db = null)
- {
- $row = Query::one($db);
- if ($row !== false) {
- $models = $this->populate([$row]);
- if (reset($models)) {
- return reset($models);
- }
- }
- throw new ModelNotFountException();
- }
- }
|