Completed
Push — master ( 9c7c42...b20e86 )
by Hyunwoo
02:28
created
lib/Gnf/db/base.php 3 patches
Doc Comments   +7 added lines, -1 removed lines patch added patch discarded remove patch
@@ -540,6 +540,9 @@  discard block
 block discarded – undo
540 540
 		return null;
541 541
 	}
542 542
 
543
+	/**
544
+	 * @param string $sql
545
+	 */
543 546
 	public function sqlDo($sql)
544 547
 	{
545 548
 		$sql = $this->parseQuery(func_get_args());
@@ -549,7 +552,7 @@  discard block
 block discarded – undo
549 552
 	}
550 553
 
551 554
 	/**
552
-	 * @param $sql
555
+	 * @param string $sql
553 556
 	 *
554 557
 	 * @return mixed
555 558
 	 * @throws Exception
@@ -576,6 +579,9 @@  discard block
 block discarded – undo
576 579
 		return $this->parseQuery(func_get_args());
577 580
 	}
578 581
 
582
+	/**
583
+	 * @param string $sql
584
+	 */
579 585
 	public function sqlData($sql)
580 586
 	{
581 587
 		$sql = $this->parseQuery(func_get_args());
Please login to merge, or discard this patch.
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace Gnf\db;
4 4
 
5
-use Exception;
6
-use Gnf\db\Helper\GnfSqlNot;
7
-use Gnf\db\Helper\GnfSqlNow;
8
-use Gnf\db\Superclass\gnfDbinterface;
5
+use Exception;
6
+use Gnf\db\Helper\GnfSqlNot;
7
+use Gnf\db\Helper\GnfSqlNow;
8
+use Gnf\db\Superclass\gnfDbinterface;
9 9
 use InvalidArgumentException;
10 10
 
11 11
 abstract class base implements gnfDbinterface
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -399,7 +399,7 @@
 block discarded – undo
399 399
 		$fullsized_column_items = explode('.', $fullsized_column);
400 400
 		array_pop($fullsized_column_items);
401 401
 		$fullsized_column_items = array_map(
402
-			function ($item) {
402
+			function($item) {
403 403
 				return self::escapeFullColumnElement($item);
404 404
 			},
405 405
 			$fullsized_column_items
Please login to merge, or discard this patch.