Completed
Pull Request — 1.1 (#24)
by Charles
09:32
created
src/SQLParser/Query/StatementFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
         if (isset($desc['SELECT'])) {
49 49
             $select = new Select();
50 50
 
51
-            $columns = array_map(function ($item) {
51
+            $columns = array_map(function($item) {
52 52
                 return NodeFactory::toObject($item);
53 53
             }, $desc['SELECT']);
54 54
             $columns = NodeFactory::simplify($columns);
Please login to merge, or discard this patch.
src/Mouf/Database/QueryWriter/Condition/ParamAvailableCondition.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,6 @@
 block discarded – undo
24 24
     }
25 25
 
26 26
     /**
27
-     * @param string $caller
28 27
      */
29 28
     public function isOk($parameters = null)
30 29
     {
Please login to merge, or discard this patch.
src/Mouf/Database/QueryWriter/Condition/ParamEqualsCondition.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,6 @@
 block discarded – undo
24 24
     }
25 25
 
26 26
     /**
27
-     * @param string $caller
28 27
      */
29 28
     public function isOk($parameters = null)
30 29
     {
Please login to merge, or discard this patch.
src/SQLParser/Node/AbstractManyInstancesOperator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -277,7 +277,7 @@
 block discarded – undo
277 277
      *
278 278
      * @param Connection $dbConnection
279 279
      * @param array      $parameters
280
-     * @param number     $indent
280
+     * @param integer     $indent
281 281
      * @param int        $conditionsMode
282 282
      *
283 283
      * @return string
Please login to merge, or discard this patch.
src/SQLParser/Node/Expression.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -277,7 +277,7 @@
 block discarded – undo
277 277
      *
278 278
      * @param Connection $dbConnection
279 279
      * @param array      $parameters
280
-     * @param number     $indent
280
+     * @param integer     $indent
281 281
      * @param int        $conditionsMode
282 282
      *
283 283
      * @return string
Please login to merge, or discard this patch.
src/SQLParser/Query/Select.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -295,7 +295,7 @@
 block discarded – undo
295 295
      *
296 296
      * @param array $parameters
297 297
      * @param Connection $dbConnection
298
-     * @param int|number $indent
298
+     * @param integer $indent
299 299
      * @param int $conditionsMode
300 300
      * @return string
301 301
      */
Please login to merge, or discard this patch.
src/SQLParser/Node/SimpleFunction.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -277,7 +277,7 @@
 block discarded – undo
277 277
      *
278 278
      * @param Connection $dbConnection
279 279
      * @param array      $parameters
280
-     * @param number     $indent
280
+     * @param integer     $indent
281 281
      * @param int        $conditionsMode
282 282
      *
283 283
      * @return string
Please login to merge, or discard this patch.
src/SQLParser/Node/WhenConditions.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -277,7 +277,7 @@
 block discarded – undo
277 277
      *
278 278
      * @param Connection $dbConnection
279 279
      * @param array      $parameters
280
-     * @param number     $indent
280
+     * @param integer     $indent
281 281
      * @param int        $conditionsMode
282 282
      *
283 283
      * @return string
Please login to merge, or discard this patch.
src/SQLParser/Node/SubQuery.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -277,7 +277,7 @@
 block discarded – undo
277 277
      *
278 278
      * @param Connection $dbConnection
279 279
      * @param array      $parameters
280
-     * @param number     $indent
280
+     * @param integer     $indent
281 281
      * @param int        $conditionsMode
282 282
      *
283 283
      * @return string
Please login to merge, or discard this patch.