Completed
Push — master ( 3ba983...3b6740 )
by Josué
03:13
created
src/Connection.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -236,7 +236,7 @@
 block discarded – undo
236 236
     /**
237 237
      * @return int
238 238
      */
239
-    public function getServerMayorVersion(){
239
+    public function getServerMayorVersion() {
240 240
         preg_match('/\\d+(:?\\.\\d+)+/', $this->serverVersion(), $matches);
241 241
         return (int)substr($matches[0], 0, strpos($matches[0], '.'));
242 242
     }
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -199,7 +199,7 @@
 block discarded – undo
199 199
      * @param string $username
200 200
      * @param string $oldPassword
201 201
      * @param string $newPassword
202
-     * @return mixed
202
+     * @return boolean
203 203
      * @see http://php.net/manual/en/function.oci-password-change.php
204 204
      */
205 205
     public function passwordChange($databaseName, $username, $oldPassword, $newPassword)
Please login to merge, or discard this patch.
src/SingletonConnection.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -14,9 +14,9 @@
 block discarded – undo
14 14
      *
15 15
      * @param $username
16 16
      * @param string $password
17
-     * @param string $connection_string
18
-     * @param string $character_set
19
-     * @param int $session_mode
17
+     * @param string $connectionString
18
+     * @param string $characterSet
19
+     * @param int $sessionMode
20 20
      * @return resource
21 21
      * @see http://php.net/manual/en/function.oci-connect.php
22 22
      */
Please login to merge, or discard this patch.
src/PersistentConnection.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -14,9 +14,9 @@
 block discarded – undo
14 14
      *
15 15
      * @param $username
16 16
      * @param string $password
17
-     * @param string $connection_string
18
-     * @param string $character_set
19
-     * @param int $session_mode
17
+     * @param string $connectionString
18
+     * @param string $characterSet
19
+     * @param int $sessionMode
20 20
      * @return resource
21 21
      * @see http://php.net/manual/en/function.oci-connect.php
22 22
      */
Please login to merge, or discard this patch.