File tree 1 file changed +7
-7
lines changed
1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ definition:
67
67
port : ' 389' # port
68
68
version : 3 # version
69
69
encryption : ' none' # either 'tls', 'ssl' or 'none'
70
- debug : false, # Enable debugging output
70
+ debug : false # Enable debugging output
71
71
referrals : false # Follow referrals returned by the server
72
72
options : [] # additional PHP LDAP options
73
73
# see http://php.net/manual/en/function.ldap-set-option.php
@@ -107,13 +107,13 @@ definition:
107
107
$definition = new Definition(Ldap::class, array(
108
108
'ext_ldap',
109
109
array(
110
- 'host' => '127.0.0.1'
111
- 'port' => '389'
112
- 'version' => 3
113
- 'encryption' => 'none'
110
+ 'host' => '127.0.0.1',
111
+ 'port' => '389',
112
+ 'version' => 3,
113
+ 'encryption' => 'none',
114
114
'debug' => false,
115
- 'referrals' => false
116
- 'options' => array()
115
+ 'referrals' => false,
116
+ 'options' => array(),
117
117
)
118
118
));
119
119
$definition->setFactory(array(Ldap::class, 'create'));
You can’t perform that action at this time.
0 commit comments