Campaigns.php
3 years ago
City_Statistics.php
3 years ago
Country_Statistics.php
3 years ago
Current_Traffic_Finder.php
3 years ago
Interval.php
3 years ago
Minute_Interval.php
3 years ago
Range_Query.php
3 years ago
Referrers.php
3 years ago
Reset_Database.php
3 years ago
Resources.php
3 years ago
Ten_Second_Interval.php
3 years ago
View.php
3 years ago
Views.php
3 years ago
Visitors_Over_Time_Finder.php
3 years ago
Current_Traffic_Finder.php
20 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWP\Queries; |
| 4 | |
| 5 | use IAWP\Models\Current_Traffic; |
| 6 | use IAWP\Query; |
| 7 | |
| 8 | class Current_Traffic_Finder extends Range_Query |
| 9 | { |
| 10 | public function fetch() |
| 11 | { |
| 12 | $row = Query::query('get_current_traffic', [ |
| 13 | 'start' => $this->formatted_start(), |
| 14 | 'end' => $this->formatted_end(), |
| 15 | ])->row(); |
| 16 | |
| 17 | return new Current_Traffic($row); |
| 18 | } |
| 19 | } |
| 20 |