Completed
Push — 3.x-parens-around-conditions ( b5ecf2...10ec2f )
by Paul
02:13
created
src/QueryFactory.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -163,6 +163,9 @@
 block discarded – undo
163 163
         );
164 164
     }
165 165
 
166
+    /**
167
+     * @param string $query
168
+     */
166 169
     protected function newBuilder($query)
167 170
     {
168 171
         $builderClass = "Aura\SqlQuery\\{$this->db}\\{$query}Builder";
Please login to merge, or discard this patch.
src/AbstractQuery.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
      *
71 71
      * Constructor.
72 72
      *
73
-     * @param Quoter $quoter A helper for quoting identifier names.
73
+     * @param QuoterInterface $quoter A helper for quoting identifier names.
74 74
      *
75 75
      */
76 76
     public function __construct(QuoterInterface $quoter, $builder)
@@ -280,6 +280,10 @@  discard block
 block discarded – undo
280 280
         }
281 281
     }
282 282
 
283
+    /**
284
+     * @param string $clause
285
+     * @param string $andor
286
+     */
283 287
     protected function addClauseCondClosure($clause, $andor, $closure)
284 288
     {
285 289
         // retain the prior set of conditions, and temporarily reset the clause
Please login to merge, or discard this patch.