Completed
Push — master ( 8dfd89...b5db7b )
by Christopher
02:35
created
LdapFunctionTrait.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -96,14 +96,14 @@
 block discarded – undo
96 96
         return ldap_modify_batch($this->resource, $dn, $values);
97 97
     }
98 98
 
99
-     /**
100
-     * Add attribute values to current attributes.
101
-     *
102
-     * @param string $dn
103
-     * @param array  $entry
104
-     *
105
-     * @return mixed
106
-     */
99
+        /**
100
+         * Add attribute values to current attributes.
101
+         *
102
+         * @param string $dn
103
+         * @param array  $entry
104
+         *
105
+         * @return mixed
106
+         */
107 107
     public function modAdd($dn, array $entry)
108 108
     {
109 109
         return ldap_mod_add($this->resource, $dn, $entry);
Please login to merge, or discard this patch.
Connection.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -278,12 +278,12 @@
 block discarded – undo
278 278
         return ldap_modify_batch($this->resource, $dn, $values);
279 279
     }
280 280
 
281
-     /**
282
-     * Add attribute values to current attributes.
283
-     * @param string $dn
284
-     * @param array  $entry
285
-     * @return mixed
286
-     */
281
+        /**
282
+         * Add attribute values to current attributes.
283
+         * @param string $dn
284
+         * @param array  $entry
285
+         * @return mixed
286
+         */
287 287
     public function modAdd($dn, array $entry)
288 288
     {
289 289
         return ldap_mod_add($this->resource, $dn, $entry);
Please login to merge, or discard this patch.