Completed
Pull Request — master (#44)
by yuuki
01:19
created
src/Database/CouchbaseConnection.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -380,7 +380,7 @@
 block discarded – undo
380 380
      * @param string $query
381 381
      * @param array  $bindings
382 382
      *
383
-     * @return int|mixed
383
+     * @return integer
384 384
      */
385 385
     public function insert($query, $bindings = [])
386 386
     {
Please login to merge, or discard this patch.
src/Queue/CouchbaseQueue.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -51,6 +51,8 @@  discard block
 block discarded – undo
51 51
 
52 52
     /**
53 53
      * {@inheritdoc}
54
+     * @param string $queue
55
+     * @param DatabaseJobRecord $job
54 56
      */
55 57
     protected function marshalJob($queue, $job)
56 58
     {
@@ -63,6 +65,7 @@  discard block
 block discarded – undo
63 65
 
64 66
     /**
65 67
      * {@inheritdoc}
68
+     * @param string $queue
66 69
      */
67 70
     protected function getNextAvailableJob($queue)
68 71
     {
Please login to merge, or discard this patch.
src/Schema/Blueprint.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
     }
51 51
 
52 52
     /**
53
-     * @return bool
53
+     * @return boolean|null
54 54
      */
55 55
     public function create()
56 56
     {
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
     /**
116 116
      * Specify a secondary index for the current bucket.
117 117
      *
118
-     * @param array   $columns            the JSON fields to index.
118
+     * @param string[]   $columns            the JSON fields to index.
119 119
      * @param string  $name               the name of the index.
120 120
      * @param string  $whereClause        the WHERE clause of the index.
121 121
      * @param boolean $ignoreIfExist      if a secondary index already exists with that name, an exception will be
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
     }
151 151
 
152 152
     /**
153
-     * @param $index
153
+     * @param string|null $index
154 154
      *
155 155
      * @return string
156 156
      */
Please login to merge, or discard this patch.