Completed
Push — dev-0.1.x ( 945d1b...89d2d8 )
by Josué
07:32
created
src/PdoOci8Statement.php 2 patches
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,6 +33,9 @@  discard block
 block discarded – undo
33 33
     /** @var \ArrayIterator */
34 34
     private $iterator;
35 35
 
36
+    /**
37
+     * @param string $sqlText
38
+     */
36 39
     public function __construct(Oci8ConnectionInterface $connection, $sqlText, $options = array())
37 40
     {
38 41
         if (!is_string($sqlText)) {
@@ -483,7 +486,7 @@  discard block
 block discarded – undo
483 486
 
484 487
     /**
485 488
      * @link http://php.net/manual/en/pdostatement.nextrowset.php
486
-     * @return bool
489
+     * @return boolean|null
487 490
      */
488 491
     public function nextRowset()
489 492
     {
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace Jpina\PdoOci8;
4 4
 
5
+use Iterator;
5 6
 use Jpina\Oci8\Oci8ConnectionInterface;
6 7
 use Jpina\Oci8\Oci8FieldInterface;
7 8
 use Jpina\Oci8\Oci8StatementInterface;
8
-use Iterator;
9 9
 use Traversable;
10 10
 
11 11
 /**
Please login to merge, or discard this patch.
src/PdoOci8.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -345,7 +345,7 @@  discard block
 block discarded – undo
345 345
 
346 346
     /**
347 347
      * @link http://php.net/manual/en/pdo.getavailabledrivers.php
348
-     * @return array
348
+     * @return string[]
349 349
      */
350 350
     public static function getAvailableDrivers()
351 351
     {
@@ -380,7 +380,7 @@  discard block
 block discarded – undo
380 380
      * @param array $driver_options
381 381
      *
382 382
      * @link http://php.net/manual/en/pdo.prepare.php
383
-     * @return bool|PdoOci8Statement
383
+     * @return PdoOci8Statement
384 384
      */
385 385
     public function prepare($statement, $driver_options = array())
386 386
     {
Please login to merge, or discard this patch.