Welcome to mirror list, hosted at ThFree Co, Russian Federation.

RequestAuthenticated.php « Tracker « Mock « Framework « PHPUnit « tests - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0b3c0a35554a2943135d6ef0fc33835cd4177454 (plain)
1
2
3
4
5
6
7
8
9
10
<?php
namespace Piwik\Tests\Framework\Mock\Tracker;

use Piwik\Tracker\Request;

class RequestAuthenticated extends Request
{
    protected $isAuthenticated = true;

}