SiteNameJoin.php
25 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Piwik - free/libre analytics platform |
| 4 | * |
| 5 | * @link https://matomo.org |
| 6 | * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later |
| 7 | * |
| 8 | */ |
| 9 | namespace Piwik\Columns\Join; |
| 10 | |
| 11 | use Piwik\Columns; |
| 12 | |
| 13 | /** |
| 14 | * @api |
| 15 | * @since 3.1.0 |
| 16 | */ |
| 17 | class SiteNameJoin extends Columns\Join |
| 18 | { |
| 19 | public function __construct() |
| 20 | { |
| 21 | return parent::__construct('site', 'idsite', 'name'); |
| 22 | } |
| 23 | |
| 24 | } |
| 25 |