Minor code style fix (FlintCI) - refs BT#17288

pull/3383/head
Sébastien Ducoulombier 5 years ago
parent e099f58c47
commit 269662141c
  1. 2
      plugin/zoom/endpoint.php
  2. 2
      plugin/zoom/lib/zoom_plugin.class.php

@ -46,7 +46,7 @@ switch ($objectType) {
$entityManager->persist(
(
$meetingRepository->find($object->id)->setStatus($action)
?: (new MeetingEntity)->setMeetingInfoGet(MeetingInfoGet::fromObject($object))
?: (new MeetingEntity())->setMeetingInfoGet(MeetingInfoGet::fromObject($object))
)
);
$entityManager->flush();

@ -827,7 +827,7 @@ class ZoomPlugin extends Plugin
/**
* Update local recording list from remote Zoom server's version.
* Kept to implement a future administration button ("import existing data from zoom server")
* Kept to implement a future administration button ("import existing data from zoom server").
*
* @param DateTime $startDate
* @param DateTime $endDate

Loading…
Cancel
Save