api4 - Import CRM/, Civi/, templates/, ang/, css/, js/, xml/menu
[civicrm-core.git] / Civi / Api4 / Relationship.php
1 <?php
2
3 namespace Civi\Api4;
4
5 /**
6 * Relationship entity.
7 *
8 * @package Civi\Api4
9 */
10 class Relationship extends Generic\DAOEntity {
11
12 /**
13 * @return \Civi\Api4\Action\Relationship\Get
14 */
15 public static function get() {
16 return new \Civi\Api4\Action\Relationship\Get(static::class, __FUNCTION__);
17 }
18
19 }