From 7492a20bb3a502fac4ccfc307b1674d9d1c7809f Mon Sep 17 00:00:00 2001 From: Julio Montoya Date: Tue, 28 Jul 2020 12:32:59 +0200 Subject: [PATCH] Minor - format code --- plugin/zoom/Entity/MeetingEntity.php | 35 ++++++++++++------------- plugin/zoom/Entity/RegistrantEntity.php | 5 ++-- plugin/zoom/lang/english.php | 1 - 3 files changed, 19 insertions(+), 22 deletions(-) diff --git a/plugin/zoom/Entity/MeetingEntity.php b/plugin/zoom/Entity/MeetingEntity.php index 7d249b8f3d..bee603db67 100644 --- a/plugin/zoom/Entity/MeetingEntity.php +++ b/plugin/zoom/Entity/MeetingEntity.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; diff --git a/plugin/zoom/Entity/RegistrantEntity.php b/plugin/zoom/Entity/RegistrantEntity.php index 0431125162..1b55264747 100644 --- a/plugin/zoom/Entity/RegistrantEntity.php +++ b/plugin/zoom/Entity/RegistrantEntity.php @@ -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 */ diff --git a/plugin/zoom/lang/english.php b/plugin/zoom/lang/english.php index 5b492006f3..d8fc51af28 100755 --- a/plugin/zoom/lang/english.php +++ b/plugin/zoom/lang/english.php @@ -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"; -