Passed
Pull Request — master (#225)
by Def
02:41
created

Customer::getItems()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 4
rs 10
c 1
b 0
f 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Yiisoft\ActiveRecord\Tests\Stubs\ActiveRecord;
6
7
use Yiisoft\ActiveRecord\ActiveQuery;
8
use Yiisoft\ActiveRecord\ActiveRecord;
9
10
/**
11
 * Class Customer.
12
 *
13
 * @property int $id
14
 * @property string $name
15
 * @property string $email
16
 * @property string $address
17
 * @property int $status
18
 *
19
 * @method CustomerQuery findBySql($sql, $params = []) static.
20
 */
21
class Customer extends ActiveRecord
22
{
23
    public const STATUS_ACTIVE = 1;
24
    public const STATUS_INACTIVE = 2;
25
26
    /**
27
     * @var int|string
28
     */
29
    public $status2;
30
    /**
31
     * @var int|string|null
32
     */
33
    public $sumTotal;
34
35
    public function getTableName(): string
36
    {
37
        return 'customer';
38
    }
39
40
    public function getProfile(): ActiveQuery
41
    {
42
        return $this->hasOne(Profile::class, ['id' => 'profile_id']);
43
    }
44
45
    public function getOrdersPlain(): ActiveQuery
46
    {
47
        return $this->hasMany(Order::class, ['customer_id' => 'id']);
48
    }
49
50
    public function getOrders(): ActiveQuery
51
    {
52
        return $this->hasMany(Order::class, ['customer_id' => 'id'])->orderBy('[[id]]');
53
    }
54
55
    public function getOrdersNoOrder(): ActiveQuery
56
    {
57
        return $this->hasMany(Order::class, ['customer_id' => 'id']);
58
    }
59
60
    public function getExpensiveOrders(): ActiveQuery
61
    {
62
        return $this->hasMany(Order::class, ['customer_id' => 'id'])->andWhere('[[total]] > 50')->orderBy('id');
63
    }
64
65
    public function getItem(): void
66
    {
67
    }
68
69
    public function getOrdersWithItems(): ActiveQuery
70
    {
71
        return $this->hasMany(Order::class, ['customer_id' => 'id'])->with('orderItems');
72
    }
73
74
    public function getExpensiveOrdersWithNullFK(): ActiveQuery
75
    {
76
        return $this->hasMany(
77
            OrderWithNullFK::class,
78
            ['customer_id' => 'id']
79
        )->andWhere('[[total]] > 50')->orderBy('id');
80
    }
81
82
    public function getOrdersWithNullFK(): ActiveQuery
83
    {
84
        return $this->hasMany(OrderWithNullFK::class, ['customer_id' => 'id'])->orderBy('id');
85
    }
86
87
    public function getOrders2(): ActiveQuery
88
    {
89
        return $this->hasMany(Order::class, ['customer_id' => 'id'])->inverseOf('customer2')->orderBy('id');
90
    }
91
92
    /** deeply nested table relation */
93
    public function getOrderItems(): ActiveQuery
94
    {
95
        $rel = $this->hasMany(Item::class, ['id' => 'item_id']);
96
97
        return $rel->viaTable('order_item', ['order_id' => 'id'], function ($q) {
98
            /* @var $q ActiveQuery */
99
            $q->viaTable('order', ['customer_id' => 'id']);
100
        })->orderBy('id');
101
    }
102
103
    public function setOrdersReadOnly(): void
104
    {
105
    }
106
107
    public function getOrderItems2()
108
    {
109
        return $this->hasMany(OrderItem::class, ['order_id' => 'id'])
110
            ->via('ordersNoOrder');
111
    }
112
113
    public function getItems()
114
    {
115
        return $this->hasMany(Item::class, ['id' => 'item_id'])
116
            ->via('orderItems2');
117
    }
118
}
119