-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_ide_helper_models.php
162 lines (154 loc) · 8.01 KB
/
_ide_helper_models.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<?php
// @formatter:off
/**
* A helper file for your Eloquent Models
* Copy the phpDocs from this file to the correct Model,
* And remove them from this file, to prevent double declarations.
*
* @author Barry vd. Heuvel <barryvdh@gmail.com>
*/
namespace App\Models{
/**
* App\Models\BitcoinPrice
*
* @property int $id
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property string $currency
* @property string $price
* @property string $market_cap
* @property string $total_volume
* @property string $high_24h
* @property string $low_24h
* @property string $price_change_percentage_24h
* @property string $price_change_percentage_7d
* @property string $price_change_percentage_14d
* @property string $price_change_percentage_30d
* @property string $price_change_percentage_60d
* @property string $price_change_percentage_200d
* @property string $price_change_percentage_1y
* @property string $market_cap_change_percentage_24h
* @property string|null $last_upd_from_api
* @property string|null $extraction_id
* @method static \Illuminate\Database\Eloquent\Builder|BitcoinPrice newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|BitcoinPrice newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|BitcoinPrice query()
* @method static \Illuminate\Database\Eloquent\Builder|BitcoinPrice whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|BitcoinPrice whereCurrency($value)
* @method static \Illuminate\Database\Eloquent\Builder|BitcoinPrice whereExtractionId($value)
* @method static \Illuminate\Database\Eloquent\Builder|BitcoinPrice whereHigh24h($value)
* @method static \Illuminate\Database\Eloquent\Builder|BitcoinPrice whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|BitcoinPrice whereLastUpdFromApi($value)
* @method static \Illuminate\Database\Eloquent\Builder|BitcoinPrice whereLow24h($value)
* @method static \Illuminate\Database\Eloquent\Builder|BitcoinPrice whereMarketCap($value)
* @method static \Illuminate\Database\Eloquent\Builder|BitcoinPrice whereMarketCapChangePercentage24h($value)
* @method static \Illuminate\Database\Eloquent\Builder|BitcoinPrice wherePrice($value)
* @method static \Illuminate\Database\Eloquent\Builder|BitcoinPrice wherePriceChangePercentage14d($value)
* @method static \Illuminate\Database\Eloquent\Builder|BitcoinPrice wherePriceChangePercentage1y($value)
* @method static \Illuminate\Database\Eloquent\Builder|BitcoinPrice wherePriceChangePercentage200d($value)
* @method static \Illuminate\Database\Eloquent\Builder|BitcoinPrice wherePriceChangePercentage24h($value)
* @method static \Illuminate\Database\Eloquent\Builder|BitcoinPrice wherePriceChangePercentage30d($value)
* @method static \Illuminate\Database\Eloquent\Builder|BitcoinPrice wherePriceChangePercentage60d($value)
* @method static \Illuminate\Database\Eloquent\Builder|BitcoinPrice wherePriceChangePercentage7d($value)
* @method static \Illuminate\Database\Eloquent\Builder|BitcoinPrice whereTotalVolume($value)
* @method static \Illuminate\Database\Eloquent\Builder|BitcoinPrice whereUpdatedAt($value)
*/
class BitcoinPrice extends \Eloquent {}
}
namespace App\Models{
/**
* App\Models\Extraction
*
* @property int $id
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property string $extraction_id
* @method static \Illuminate\Database\Eloquent\Builder|Extraction newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Extraction newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Extraction query()
* @method static \Illuminate\Database\Eloquent\Builder|Extraction whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Extraction whereExtractionId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Extraction whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Extraction whereUpdatedAt($value)
*/
class Extraction extends \Eloquent {}
}
namespace App\Models{
/**
* App\Models\Fee
*
* @property int $id
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property int $fastest_fee
* @property int $half_hour_fee
* @property int $hour_fee
* @property string|null $extraction_id
* @method static \Illuminate\Database\Eloquent\Builder|Fee newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Fee newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Fee query()
* @method static \Illuminate\Database\Eloquent\Builder|Fee whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Fee whereExtractionId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Fee whereFastestFee($value)
* @method static \Illuminate\Database\Eloquent\Builder|Fee whereHalfHourFee($value)
* @method static \Illuminate\Database\Eloquent\Builder|Fee whereHourFee($value)
* @method static \Illuminate\Database\Eloquent\Builder|Fee whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Fee whereUpdatedAt($value)
*/
class Fee extends \Eloquent {}
}
namespace App\Models{
/**
* App\Models\Sentiment
*
* @property int $id
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property int $value
* @property string $value_classification
* @property string|null $last_upd_api
* @property string|null $extraction_id
* @method static \Illuminate\Database\Eloquent\Builder|Sentiment newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Sentiment newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Sentiment query()
* @method static \Illuminate\Database\Eloquent\Builder|Sentiment whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Sentiment whereExtractionId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Sentiment whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Sentiment whereLastUpdApi($value)
* @method static \Illuminate\Database\Eloquent\Builder|Sentiment whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Sentiment whereValue($value)
* @method static \Illuminate\Database\Eloquent\Builder|Sentiment whereValueClassification($value)
*/
class Sentiment extends \Eloquent {}
}
namespace App\Models{
/**
* App\Models\User
*
* @property int $id
* @property string $name
* @property string $email
* @property \Illuminate\Support\Carbon|null $email_verified_at
* @property string $password
* @property string|null $remember_token
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read \Illuminate\Notifications\DatabaseNotificationCollection|\Illuminate\Notifications\DatabaseNotification[] $notifications
* @property-read int|null $notifications_count
* @property-read \Illuminate\Database\Eloquent\Collection|\Laravel\Sanctum\PersonalAccessToken[] $tokens
* @property-read int|null $tokens_count
* @method static \Database\Factories\UserFactory factory(...$parameters)
* @method static \Illuminate\Database\Eloquent\Builder|User newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|User newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|User query()
* @method static \Illuminate\Database\Eloquent\Builder|User whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereEmail($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereEmailVerifiedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|User wherePassword($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereRememberToken($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereUpdatedAt($value)
*/
class User extends \Eloquent {}
}