Skip to content

Commit 987100c

Browse files
committed
fix: PHP lint
1 parent c33b172 commit 987100c

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tests/Model/Mapper/FormcreatorLdapSelectTypeMapperTest.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@
4444

4545
final class FormcreatorLdapSelectTypeMapperTest extends MapperTestCase
4646
{
47-
4847
public function testLdapSelectTypeMigrationWhenEnabledWithValidAuthLDAP(): void
4948
{
5049
/** @var \DBmysql $DB */
@@ -85,7 +84,7 @@ private function testLdapSelectTypeMigrationWhenEnabled(int $authldap_id, ?int $
8584
[
8685
'name' => 'My LDAP question',
8786
'fieldtype' => 'ldapselect',
88-
'values' => '{"ldap_auth":"'.$authldap_id.'","ldap_attribute":"456","ldap_filter":"(& (uid=*) (objectClass=inetOrgPerson))"}',
87+
'values' => '{"ldap_auth":"' . $authldap_id . '","ldap_attribute":"456","ldap_filter":"(& (uid=*) (objectClass=inetOrgPerson))"}',
8988
],
9089
],
9190
);
@@ -132,7 +131,7 @@ public function testLdapSelectTypeMigrationWhenDisabled(): void
132131
[
133132
'name' => 'My LDAP question',
134133
'fieldtype' => 'ldapselect',
135-
'values' => '{"ldap_auth":"'.$authldap->getId().'","ldap_attribute":"456","ldap_filter":"(& (uid=*) (objectClass=inetOrgPerson))"}',
134+
'values' => '{"ldap_auth":"' . $authldap->getId() . '","ldap_attribute":"456","ldap_filter":"(& (uid=*) (objectClass=inetOrgPerson))"}',
136135
],
137136
],
138137
);

0 commit comments

Comments
 (0)