Completed
Push — master ( f0fd1d...defc9d )
by Christopher
40:01 queued 02:21
created
LdapFunctionTrait.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -105,14 +105,14 @@  discard block
 block discarded – undo
105 105
         return ldap_modify_batch($this->resource, $dn, $values);
106 106
     }
107 107
 
108
-     /**
109
-     * Add attribute values to current attributes.
110
-     *
111
-     * @param string $dn
112
-     * @param array  $entry
113
-     *
114
-     * @return mixed
115
-     */
108
+        /**
109
+         * Add attribute values to current attributes.
110
+         *
111
+         * @param string $dn
112
+         * @param array  $entry
113
+         *
114
+         * @return mixed
115
+         */
116 116
     public function modAdd($dn, array $entry)
117 117
     {
118 118
         return ldap_mod_add($this->resource, $dn, $entry);
@@ -249,12 +249,12 @@  discard block
 block discarded – undo
249 249
         return ldap_start_tls($this->resource);
250 250
     }
251 251
     
252
-     /**
253
-     * Returns the error number of the last command
254
-     * executed on the current connection.
255
-     *
256
-     * @return mixed
257
-     */
252
+        /**
253
+         * Returns the error number of the last command
254
+         * executed on the current connection.
255
+         *
256
+         * @return mixed
257
+         */
258 258
     public function getErrNo()
259 259
     {
260 260
         return ldap_errno($this->resource);
Please login to merge, or discard this patch.
index.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,8 +11,8 @@
 block discarded – undo
11 11
   </head>
12 12
   <body>
13 13
       <?php
14
-      // put your code here
14
+        // put your code here
15 15
 
16
-      ?>
16
+        ?>
17 17
   </body>
18 18
 </html>
Please login to merge, or discard this patch.
schemas/ActiveDirectory.php 1 patch
Indentation   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -80,13 +80,13 @@  discard block
 block discarded – undo
80 80
      */
81 81
     public $badpasswordtime;
82 82
 
83
-     /**
84
-     * The name that represents an object.
85
-     *
86
-     * @link https://msdn.microsoft.com/en-us/library/ms675449(v=vs.85).aspx
87
-     *
88
-     * @var string
89
-     */
83
+        /**
84
+         * The name that represents an object.
85
+         *
86
+         * @link https://msdn.microsoft.com/en-us/library/ms675449(v=vs.85).aspx
87
+         *
88
+         * @var string
89
+         */
90 90
     public $cn;
91 91
 
92 92
     /**
@@ -125,13 +125,13 @@  discard block
 block discarded – undo
125 125
      */
126 126
     public $contact;
127 127
 
128
-     /**
129
-     * The entry's country attribute.
130
-     *
131
-     * @link https://msdn.microsoft.com/en-us/library/ms675432(v=vs.85).aspx
132
-     *
133
-     * @var string
134
-     */
128
+        /**
129
+         * The entry's country attribute.
130
+         *
131
+         * @link https://msdn.microsoft.com/en-us/library/ms675432(v=vs.85).aspx
132
+         *
133
+         * @var string
134
+         */
135 135
     public $c;
136 136
 
137 137
     /**
@@ -154,13 +154,13 @@  discard block
 block discarded – undo
154 154
      */
155 155
     public $defaultnamingcontext;
156 156
 
157
-     /**
158
-     * Contains the name for the department in which the user works.
159
-     *
160
-     * @link https://msdn.microsoft.com/en-us/library/ms675490(v=vs.85).aspx
161
-     *
162
-     * @var string
163
-     */
157
+        /**
158
+         * Contains the name for the department in which the user works.
159
+         *
160
+         * @link https://msdn.microsoft.com/en-us/library/ms675490(v=vs.85).aspx
161
+         *
162
+         * @var string
163
+         */
164 164
     public $department;
165 165
 
166 166
     /**
@@ -678,7 +678,7 @@  discard block
 block discarded – undo
678 678
      */
679 679
     public $telephonenumber;
680 680
 
681
-   /**
681
+    /**
682 682
      * The users thumbnail photo path.
683 683
      *
684 684
      * @return string
Please login to merge, or discard this patch.
ConnectionInterface.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -350,11 +350,11 @@
 block discarded – undo
350 350
     
351 351
     
352 352
     
353
-     /**
354
-     * Destructor.
355
-     *
356
-     * Closes the current LDAP connection if it exists.
357
-     */
353
+        /**
354
+         * Destructor.
355
+         *
356
+         * Closes the current LDAP connection if it exists.
357
+         */
358 358
     //public function __destruct();
359 359
 
360 360
     /**
Please login to merge, or discard this patch.
FilterBuilder.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
      */
64 64
     public function build($condition)
65 65
     {
66
-       if (!is_array($condition)) {
66
+        if (!is_array($condition)) {
67 67
             return (string) $condition;
68 68
         } elseif (empty($condition)) {
69 69
             return '';
Please login to merge, or discard this patch.
Utilities.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -333,9 +333,9 @@
 block discarded – undo
333 333
         return [];
334 334
     }
335 335
     
336
-     /**
337
-     * Regex to match a GUID.
338
-     */
336
+        /**
337
+         * Regex to match a GUID.
338
+         */
339 339
     const MATCH_GUID = '/^([0-9a-fA-F]){8}(-([0-9a-fA-F]){4}){3}-([0-9a-fA-F]){12}$/';
340 340
 
341 341
     /**
Please login to merge, or discard this patch.