diff --git a/main/group/group_overview.php b/main/group/group_overview.php index a4ef408a7b..b4b0dfa7ae 100755 --- a/main/group/group_overview.php +++ b/main/group/group_overview.php @@ -105,7 +105,6 @@ if (isset($_GET['action'])) { } } -/* Header */ $interbreadcrumb[] = ['url' => 'group.php?'.api_get_cidreq(), 'name' => get_lang('Groups')]; $origin = api_get_origin(); if ('learnpath' != $origin) { @@ -155,6 +154,6 @@ Display::return_icon('user.png', get_lang('GoTo').' '.get_lang('Users'), '', ICO echo Display::toolbarAction('actions', [$actions, GroupManager::getSearchForm()]); echo GroupManager::getOverview($courseId, $keyword); -if ('learnpath' != $origin) { +if ('learnpath' !== $origin) { Display::display_footer(); } diff --git a/src/Chamilo/UserBundle/Entity/User.php b/src/Chamilo/UserBundle/Entity/User.php index 703a744f1d..61cf635e16 100644 --- a/src/Chamilo/UserBundle/Entity/User.php +++ b/src/Chamilo/UserBundle/Entity/User.php @@ -1435,8 +1435,6 @@ class User implements UserInterface //implements ParticipantInterface, ThemeUser /** * Set lastLogin. * - * @param \DateTime|null $lastLogin - * * @return User */ public function setLastLogin(\DateTime $lastLogin = null)