Blame view

common/modules/rubrication/models/TaxOptionQuery.php 768 Bytes
d8c1a2e0   Yarik   Big commit artbox
1
  <?php

5c2eb7c8   Yarik   Big commit almost...
2
3
4
5
6
7
      

      namespace common\modules\rubrication\models;

      

      use common\components\artboxtree\ArtboxTreeQueryTrait;

      use yii\db\ActiveQuery;

      

d8c1a2e0   Yarik   Big commit artbox
8
      /**

5c2eb7c8   Yarik   Big commit almost...
9
10
       * This is the ActiveQuery class for [[TaxOption]].

       * @see TaxOption

d8c1a2e0   Yarik   Big commit artbox
11
       */

5c2eb7c8   Yarik   Big commit almost...
12
      class TaxOptionQuery extends ActiveQuery

d8c1a2e0   Yarik   Big commit artbox
13
      {

5c2eb7c8   Yarik   Big commit almost...
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
          

          use ArtboxTreeQueryTrait;

          

          /**

           * @inheritdoc

           * @return TaxOption[]|array

           */

          public function all($db = NULL)

          {

              return parent::all($db);

          }

          

          /**

           * @inheritdoc

           * @return TaxOption|array|null

           */

          public function one($db = NULL)

          {

              return parent::one($db);

          }

d8c1a2e0   Yarik   Big commit artbox
34
      }