Db
1 year ago
Handler
2 years ago
Visit
1 year ago
Action.php
1 year ago
ActionPageview.php
2 years ago
Cache.php
1 year ago
Db.php
1 year ago
Failures.php
1 year ago
FingerprintSalt.php
1 year ago
GoalManager.php
1 year ago
Handler.php
2 years ago
IgnoreCookie.php
1 year ago
LogTable.php
1 year ago
Model.php
1 year ago
PageUrl.php
1 year ago
Request.php
1 year ago
RequestProcessor.php
1 year ago
RequestSet.php
1 year ago
Response.php
1 year ago
ScheduledTasksRunner.php
1 year ago
Settings.php
1 year ago
TableLogAction.php
1 year ago
TrackerCodeGenerator.php
1 year ago
TrackerConfig.php
2 years ago
Visit.php
1 year ago
VisitExcluded.php
1 year ago
VisitInterface.php
2 years ago
Visitor.php
1 year ago
VisitorNotFoundInDb.php
2 years ago
VisitorRecognizer.php
1 year ago
VisitInterface.php
31 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Matomo - free/libre analytics platform |
| 5 | * |
| 6 | * @link https://matomo.org |
| 7 | * @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later |
| 8 | */ |
| 9 | namespace Piwik\Tracker; |
| 10 | |
| 11 | /** |
| 12 | * Interface implemented by classes that track visit information for the Tracker. |
| 13 | * |
| 14 | */ |
| 15 | interface VisitInterface |
| 16 | { |
| 17 | /** |
| 18 | * Stores the object describing the current tracking request. |
| 19 | * |
| 20 | * @param Request $request |
| 21 | * @return void |
| 22 | */ |
| 23 | public function setRequest(\Piwik\Tracker\Request $request); |
| 24 | /** |
| 25 | * Tracks a visit. |
| 26 | * |
| 27 | * @return void |
| 28 | */ |
| 29 | public function handle(); |
| 30 | } |
| 31 |