Piwik\Tracker\VisitorRecognizer::__construct PHP Method

__construct() public method

public __construct ( $trustCookiesOnly, $visitStandardLength, $lookbackNSecondsCustom, $trackerAlwaysNewVisitor, Piwik\Tracker\Model $model, Piwik\EventDispatcher $eventDispatcher )
$model Piwik\Tracker\Model
$eventDispatcher Piwik\EventDispatcher
    public function __construct($trustCookiesOnly, $visitStandardLength, $lookbackNSecondsCustom, $trackerAlwaysNewVisitor, Model $model, EventDispatcher $eventDispatcher)
    {
        $this->trustCookiesOnly = $trustCookiesOnly;
        $this->visitStandardLength = $visitStandardLength;
        $this->lookBackNSecondsCustom = $lookbackNSecondsCustom;
        $this->trackerAlwaysNewVisitor = $trackerAlwaysNewVisitor;
        $this->model = $model;
        $this->eventDispatcher = $eventDispatcher;
    }