Completed
Pull Request — 1.3 (#56)
by David
01:31
created
src/SQLParser/Node/NodeFactory.php 2 patches
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -635,6 +635,9 @@  discard block
 block discarded – undo
635 635
         });
636 636
     }
637 637
 
638
+    /**
639
+     * @param \Closure $callback
640
+     */
638 641
     private static function array_map_deep($array, $callback)
639 642
     {
640 643
         $new = array();
@@ -661,7 +664,7 @@  discard block
 block discarded – undo
661 664
      * @param array       $parameters
662 665
      * @param string      $delimiter
663 666
      * @param bool|string $wrapInBrackets
664
-     * @param int|number  $indent
667
+     * @param integer  $indent
665 668
      * @param int         $conditionsMode
666 669
      *
667 670
      * @return null|string
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 
4 4
 use Doctrine\DBAL\Platforms\AbstractPlatform;
5 5
 use Mouf\Database\MagicQueryException;
6
-use Mouf\Database\MagicQueryParserException;
7 6
 use SQLParser\SqlRenderInterface;
8 7
 use Mouf\MoufManager;
9 8
 use Mouf\MoufInstanceDescriptor;
Please login to merge, or discard this patch.
src/SQLParser/Query/Select.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -318,7 +318,7 @@
 block discarded – undo
318 318
      *
319 319
      * @param array $parameters
320 320
      * @param AbstractPlatform $platform
321
-     * @param int|number $indent
321
+     * @param integer $indent
322 322
      * @param int $conditionsMode
323 323
      *
324 324
      * @param bool $extrapolateParameters
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,6 @@
 block discarded – undo
32 32
  */
33 33
 namespace SQLParser\Query;
34 34
 
35
-use Doctrine\DBAL\Connection;
36 35
 use Doctrine\DBAL\Platforms\AbstractPlatform;
37 36
 use Mouf\MoufInstanceDescriptor;
38 37
 use SQLParser\Node\NodeFactory;
Please login to merge, or discard this patch.
src/SQLParser/Query/Union.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace SQLParser\Query;
4 4
 
5
-use Doctrine\DBAL\Connection;
6 5
 use Doctrine\DBAL\Platforms\AbstractPlatform;
7 6
 use Mouf\MoufInstanceDescriptor;
8 7
 use SQLParser\Node\NodeFactory;
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -318,7 +318,7 @@
 block discarded – undo
318 318
      *
319 319
      * @param array $parameters
320 320
      * @param AbstractPlatform $platform
321
-     * @param int|number $indent
321
+     * @param integer $indent
322 322
      * @param int $conditionsMode
323 323
      *
324 324
      * @param bool $extrapolateParameters
Please login to merge, or discard this patch.