Completed
Branch master (4feb0c)
by Josué
04:11 queued 01:58
created
src/Connection.php 1 patch
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.
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.