Merge pull request #15346 from jitendrapurohit/dev-1272
[civicrm-core.git] / Civi / Api4 / Event.php
CommitLineData
19b53e5b
C
1<?php
2
3namespace Civi\Api4;
4
5/**
6 * Event entity.
7 *
8 * @package Civi\Api4
9 */
10class Event extends Generic\DAOEntity {
11
12 /**
13 * @return \Civi\Api4\Action\Event\Get
14 */
15 public static function get() {
16 return new \Civi\Api4\Action\Event\Get(__CLASS__, __FUNCTION__);
17 }
18
19}