/** * Adds the user to the given group. * * @param \Cartalyst\Sentry\Groups\GroupInterface $group * * @return bool */ public function addGroup(GroupInterface $group) { if (Credentials::check()) { RevisionRepository::create(['revisionable_type' => get_class($this), 'revisionable_id' => $this->getKey(), 'key' => 'added_group', 'old_value' => null, 'new_value' => $group->getName(), 'user_id' => Credentials::getUser()->id]); } return parent::addGroup($group); }