Skip to content
Snippets Groups Projects
Commit b0169769 authored by Agustin Villalba's avatar Agustin Villalba
Browse files

Solves PSR-2 compliant issues

parent 267e28e8
No related branches found
No related tags found
No related merge requests found
...@@ -355,8 +355,8 @@ $config = array( ...@@ -355,8 +355,8 @@ $config = array(
//'remember.username.checked' => FALSE, //'remember.username.checked' => FALSE,
// Give the user an option to save their organization choice for future login // Give the user an option to save their organization choice for future login
// attempts. And when enabled, what should the default be, checked or not. // attempts. And when enabled, what should the default be, checked or not.
//'remember.organization.enabled' => false, //'remember.organization.enabled' => false,
//'remember.organization.checked' => false, //'remember.organization.checked' => false,
// The way the organization as part of the username should be handled. // The way the organization as part of the username should be handled.
......
...@@ -158,7 +158,8 @@ abstract class sspmod_core_Auth_UserPassOrgBase extends SimpleSAML_Auth_Source { ...@@ -158,7 +158,8 @@ abstract class sspmod_core_Auth_UserPassOrgBase extends SimpleSAML_Auth_Source {
* Getter for the authsource config option remember.username.checked * Getter for the authsource config option remember.username.checked
* @return bool * @return bool
*/ */
public function getRememberUsernameChecked() { public function getRememberUsernameChecked()
{
return $this->rememberUsernameChecked; return $this->rememberUsernameChecked;
} }
...@@ -166,7 +167,8 @@ abstract class sspmod_core_Auth_UserPassOrgBase extends SimpleSAML_Auth_Source { ...@@ -166,7 +167,8 @@ abstract class sspmod_core_Auth_UserPassOrgBase extends SimpleSAML_Auth_Source {
* Getter for the authsource config option remember.organization.enabled * Getter for the authsource config option remember.organization.enabled
* @return bool * @return bool
*/ */
public function getRememberOrganizationEnabled() { public function getRememberOrganizationEnabled()
{
return $this->rememberOrganizationEnabled; return $this->rememberOrganizationEnabled;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment