GoalNameJoin.php
23 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\Columns\Join; |
| 10 | |
| 11 | use Piwik\Columns; |
| 12 | /** |
| 13 | * @api |
| 14 | * @since 3.1.0 |
| 15 | */ |
| 16 | class GoalNameJoin extends Columns\Join |
| 17 | { |
| 18 | public function __construct() |
| 19 | { |
| 20 | parent::__construct('goal', 'idgoal', 'name'); |
| 21 | } |
| 22 | } |
| 23 |