Intervals
5 months ago
Campaign_Landing_Page_Statistics.php
9 months ago
Campaign_Statistics.php
2 years ago
Campaign_UTM_Campaign_Statistics.php
9 months ago
Campaign_UTM_Medium_Statistics.php
9 months ago
Campaign_UTM_Source_Statistics.php
9 months ago
City_Statistics.php
2 years ago
Click_Statistics.php
5 months ago
Country_Statistics.php
2 years ago
Device_Browser_Statistics.php
2 years ago
Device_OS_Statistics.php
2 years ago
Device_Type_Statistics.php
2 years ago
Journey_Statistics.php
6 months ago
Page_Statistics.php
2 years ago
Referrer_Statistics.php
2 years ago
Referrer_Type_Statistics.php
9 months ago
Statistic.php
3 months ago
Statistics.php
4 days ago
Journey_Statistics.php
23 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWP\Statistics; |
| 4 | |
| 5 | use IAWP\Date_Range\Date_Range; |
| 6 | use IAWP\Rows\Rows; |
| 7 | /** @internal */ |
| 8 | class Journey_Statistics extends \IAWP\Statistics\Statistics |
| 9 | { |
| 10 | public function total_number_of_rows() : ?int |
| 11 | { |
| 12 | return 0; |
| 13 | } |
| 14 | protected function make_statistic_instances() : array |
| 15 | { |
| 16 | return []; |
| 17 | } |
| 18 | protected function query(Date_Range $range, ?Rows $rows = null, bool $is_grouped_by_date_interval = \false) |
| 19 | { |
| 20 | return []; |
| 21 | } |
| 22 | } |
| 23 |