Minor - format code

pull/3418/head
Julio Montoya 5 years ago
parent 9fb411b14e
commit 7492a20bb3
  1. 35
      plugin/zoom/Entity/MeetingEntity.php
  2. 5
      plugin/zoom/Entity/RegistrantEntity.php
  3. 1
      plugin/zoom/lang/english.php

@ -36,6 +36,23 @@ use Exception;
*/
class MeetingEntity
{
/** @var string meeting type name */
public $typeName;
/** @var DateTime meeting start time as a DateTime instance */
public $startDateTime;
/** @var string meeting formatted start time */
public $formattedStartTime;
/** @var DateInterval meeting duration as a DateInterval instance */
public $durationInterval;
/** @var string meeting formatted duration */
public $formattedDuration;
/** @var string */
public $statusName;
/**
* @var int the remote zoom meeting identifier
* @ORM\Column(type="bigint")
@ -85,24 +102,6 @@ class MeetingEntity
/** @var MeetingListItem */
private $meetingListItem;
/** @var string meeting type name */
public $typeName;
/** @var DateTime meeting start time as a DateTime instance */
public $startDateTime;
/** @var string meeting formatted start time */
public $formattedStartTime;
/** @var DateInterval meeting duration as a DateInterval instance */
public $durationInterval;
/** @var string meeting formatted duration */
public $formattedDuration;
/** @var string */
public $statusName;
/** @var MeetingInfoGet */
private $meetingInfoGet;

@ -26,6 +26,8 @@ use Exception;
*/
class RegistrantEntity
{
/** @var string */
public $fullName;
/**
* @var string
* @ORM\Column(type="bigint")
@ -80,9 +82,6 @@ class RegistrantEntity
/** @var MeetingRegistrantListItem */
private $meetingRegistrantListItem;
/** @var string */
public $fullName;
/**
* @return string
*/

@ -136,4 +136,3 @@ $strings['CreateGlobalVideoConference'] = "Create global video conference";
$strings['ConferenceNotStarted'] = "Conference not started";
$strings['MeetingNotFound'] = "Meeting not found";
$strings['JoinURLNotAvailable'] = "URL not available";

Loading…
Cancel
Save