APIv4 - Add `@since` annotation to each entity
[civicrm-core.git] / Civi / Api4 / Translation.php
CommitLineData
7782deca
TO
1<?php
2namespace Civi\Api4;
3
4/**
5 * Attach supplemental translations to strings stored in the database.
6 *
d44cc3cb 7 * @since 5.40
7782deca
TO
8 * @package Civi\Api4
9 */
10class Translation extends Generic\DAOEntity {
11
12 public static function permissions() {
13 return [
14 'meta' => ['access CiviCRM'],
15 'default' => ['translate CiviCRM'],
16 ];
17 }
18
19}