Skip to content

Commit

Permalink
coding style
Browse files Browse the repository at this point in the history
  • Loading branch information
strebl committed Jul 6, 2015
1 parent 53000fd commit b74dec1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/LdapAuthUserProviderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public function setUp()

$this->config = [
'fields' => [
'groups' => 'groups'
'groups' => 'groups',
],
'userlist' => false,
'group' => [],
Expand Down Expand Up @@ -188,8 +188,8 @@ protected function getLdapInfoCollection()
$info->distinguishedname = 'DC=LDAP,OU=AUTH,OU=FIRST GROUP';

$info->memberof = [
"CN=gg_test_bms_lehrer,OU=Groups,OU=BMS,OU=gibb-Test,DC=gibb,DC=int",
"CN=gg_test_gdl_lehrer,OU=Groups,OU=GDL,OU=gibb-Test,DC=gibb,DC=int"
'CN=gg_test_bms_lehrer,OU=Groups,OU=BMS,OU=gibb-Test,DC=gibb,DC=int',
'CN=gg_test_gdl_lehrer,OU=Groups,OU=GDL,OU=gibb-Test,DC=gibb,DC=int',
];

return $info;
Expand All @@ -210,8 +210,8 @@ protected function getLdapInfo()

$info['memberof']['count'] = 2;
$info['memberof'] = [
"CN=gg_test_bms_lehrer,OU=Groups,OU=BMS,OU=gibb-Test,DC=gibb,DC=int",
"CN=gg_test_gdl_lehrer,OU=Groups,OU=GDL,OU=gibb-Test,DC=gibb,DC=int"
'CN=gg_test_bms_lehrer,OU=Groups,OU=BMS,OU=gibb-Test,DC=gibb,DC=int',
'CN=gg_test_gdl_lehrer,OU=Groups,OU=GDL,OU=gibb-Test,DC=gibb,DC=int',
];

return $info;
Expand Down

0 comments on commit b74dec1

Please sign in to comment.