Intervals
3 years ago
Campaign_Statistics.php
3 years ago
City_Statistics.php
2 years ago
Country_Statistics.php
2 years ago
Device_Statistics.php
2 years ago
Page_Statistics.php
3 years ago
Referrer_Statistics.php
3 years ago
Statistic.php
3 years ago
Statistics.php
2 years ago
Campaign_Statistics.php
16 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWP_SCOPED\IAWP\Statistics; |
| 4 | |
| 5 | class Campaign_Statistics extends Statistics |
| 6 | { |
| 7 | protected function allowed_in_id_column() : string |
| 8 | { |
| 9 | return 'sessions.campaign_id'; |
| 10 | } |
| 11 | protected function required_column() : ?string |
| 12 | { |
| 13 | return 'sessions.campaign_id'; |
| 14 | } |
| 15 | } |
| 16 |