Passed
Branch master (c939c5)
by Adrian
01:50
created
src/Statements/QueryStatementInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
 	 * @param bool $replacement
19 19
 	 * @return string
20 20
 	 */
21
-	public function getSyntax( $replacement = self::REPLACEMENT_NONE );
21
+	public function getSyntax($replacement = self::REPLACEMENT_NONE);
22 22
 
23 23
 	public function execute();
24 24
 
Please login to merge, or discard this patch.
src/Statements/QueryStatement.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -63,16 +63,16 @@  discard block
 block discarded – undo
63 63
 	 * @param string $table
64 64
 	 * @throws QueryException
65 65
 	 */
66
-	public function __construct( QueryBuild $queryBuild, $table = '' )
66
+	public function __construct(QueryBuild $queryBuild, $table = '')
67 67
 	{
68 68
 
69
-		$table = $this->validateTable( $table );
69
+		$table = $this->validateTable($table);
70 70
 
71 71
 		$this->queryBuild = $queryBuild;
72 72
 		$this->queryStructure = new QueryStructure();
73
-		$this->queryStructure->setElement( QueryStructure::TABLE, $table );
74
-		$this->queryStructure->setElement( QueryStructure::STATEMENT, $this->statement );
75
-		$this->queryStructure->setElement( QueryStructure::QUERY_TYPE, $this->queryBuild->getType() );
73
+		$this->queryStructure->setElement(QueryStructure::TABLE, $table);
74
+		$this->queryStructure->setElement(QueryStructure::STATEMENT, $this->statement);
75
+		$this->queryStructure->setElement(QueryStructure::QUERY_TYPE, $this->queryBuild->getType());
76 76
 
77 77
 	}
78 78
 
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
 	 */
82 82
 	public function getBindParams()
83 83
 	{
84
-		return $this->queryStructure->getElement( QueryStructure::BIND_PARAMS );
84
+		return $this->queryStructure->getElement(QueryStructure::BIND_PARAMS);
85 85
 	}
86 86
 
87 87
 
Please login to merge, or discard this patch.
src/Statements/QueryInsertMultiple.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -36,13 +36,13 @@  discard block
 block discarded – undo
36 36
 	 * @param QueryBuild $queryBuild
37 37
 	 * @param null $table
38 38
 	 */
39
-	public function __construct( QueryBuild $queryBuild, $table = null )
39
+	public function __construct(QueryBuild $queryBuild, $table = null)
40 40
 	{
41
-		parent::__construct( $queryBuild, $table );
42
-		$this->queryStructure->setElement( QueryStructure::FIELDS, array() );
41
+		parent::__construct($queryBuild, $table);
42
+		$this->queryStructure->setElement(QueryStructure::FIELDS, array());
43 43
 	}
44 44
 
45
-	public function getSyntax( $replacement = self::REPLACEMENT_NONE )
45
+	public function getSyntax($replacement = self::REPLACEMENT_NONE)
46 46
 	{
47 47
 		$syntax = array();
48 48
 
@@ -59,26 +59,26 @@  discard block
 block discarded – undo
59 59
 		/**
60 60
 		 * PRIORITY
61 61
 		 */
62
-		$syntax[] = $this->queryStructure->getElement( QueryStructure::PRIORITY );
62
+		$syntax[] = $this->queryStructure->getElement(QueryStructure::PRIORITY);
63 63
 
64 64
 		/**
65 65
 		 * IGNORE clause
66 66
 		 */
67
-		$syntax[] = $this->queryStructure->getElement( QueryStructure::IGNORE ) ? 'IGNORE' : '';
67
+		$syntax[] = $this->queryStructure->getElement(QueryStructure::IGNORE) ? 'IGNORE' : '';
68 68
 
69 69
 		/**
70 70
 		 * INTO table
71 71
 		 */
72
-		$syntax[] = 'INTO ' . $this->queryStructure->getElement( QueryStructure::TABLE );
72
+		$syntax[] = 'INTO ' . $this->queryStructure->getElement(QueryStructure::TABLE);
73 73
 
74 74
 		/**
75 75
 		 * FIELDS update
76 76
 		 */
77 77
 		$syntax[] = $this->getInsertMultipleRowsSyntax();
78 78
 
79
-		$syntax = implode( ' ', $syntax );
79
+		$syntax = implode(' ', $syntax);
80 80
 
81
-		return $this->getSyntaxReplace( $syntax, $replacement );
81
+		return $this->getSyntaxReplace($syntax, $replacement);
82 82
 
83 83
 	}
84 84
 
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 	{
87 87
 		return DbService::getInstance()->query(
88 88
 			$this->getSyntax(),
89
-			$this->queryStructure->getElement( QueryStructure::BIND_PARAMS )
89
+			$this->queryStructure->getElement(QueryStructure::BIND_PARAMS)
90 90
 		);
91 91
 	}
92 92
 }
93 93
\ No newline at end of file
Please login to merge, or discard this patch.
src/Statements/QueryInsert.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -36,9 +36,9 @@  discard block
 block discarded – undo
36 36
 	 * @param QueryBuild $queryBuild
37 37
 	 * @param null $table
38 38
 	 */
39
-	public function __construct( QueryBuild $queryBuild, $table = null )
39
+	public function __construct(QueryBuild $queryBuild, $table = null)
40 40
 	{
41
-		parent::__construct( $queryBuild, $table );
41
+		parent::__construct($queryBuild, $table);
42 42
 	}
43 43
 
44 44
 	/**
@@ -46,14 +46,14 @@  discard block
 block discarded – undo
46 46
 	 */
47 47
 	public function multiple()
48 48
 	{
49
-		return new QueryInsertMultiple( $this->queryBuild, $this->queryStructure->getElement( QueryStructure::TABLE ) );
49
+		return new QueryInsertMultiple($this->queryBuild, $this->queryStructure->getElement(QueryStructure::TABLE));
50 50
 	}
51 51
 
52 52
 	/**
53 53
 	 * @param bool|int $replacement
54 54
 	 * @return mixed|string
55 55
 	 */
56
-	public function getSyntax( $replacement = self::REPLACEMENT_NONE )
56
+	public function getSyntax($replacement = self::REPLACEMENT_NONE)
57 57
 	{
58 58
 		$syntax = array();
59 59
 
@@ -70,26 +70,26 @@  discard block
 block discarded – undo
70 70
 		/**
71 71
 		 * PRIORITY
72 72
 		 */
73
-		$syntax[] = $this->queryStructure->getElement( QueryStructure::PRIORITY );
73
+		$syntax[] = $this->queryStructure->getElement(QueryStructure::PRIORITY);
74 74
 
75 75
 		/**
76 76
 		 * IGNORE clause
77 77
 		 */
78
-		$syntax[] = $this->queryStructure->getElement( QueryStructure::IGNORE ) ? 'IGNORE' : '';
78
+		$syntax[] = $this->queryStructure->getElement(QueryStructure::IGNORE) ? 'IGNORE' : '';
79 79
 
80 80
 		/**
81 81
 		 * INTO table
82 82
 		 */
83
-		$syntax[] = 'INTO ' . $this->queryStructure->getElement( QueryStructure::TABLE );
83
+		$syntax[] = 'INTO ' . $this->queryStructure->getElement(QueryStructure::TABLE);
84 84
 
85 85
 		/**
86 86
 		 * FIELDS update
87 87
 		 */
88 88
 		$syntax[] = $this->getSettingFieldsSyntax();
89 89
 
90
-		$syntax = implode( ' ', $syntax );
90
+		$syntax = implode(' ', $syntax);
91 91
 
92
-		return $this->getSyntaxReplace( $syntax, $replacement );
92
+		return $this->getSyntaxReplace($syntax, $replacement);
93 93
 
94 94
 	}
95 95
 
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
 	{
99 99
 		return DbService::getInstance()->query(
100 100
 			$this->getSyntax(),
101
-			$this->queryStructure->getElement( QueryStructure::BIND_PARAMS )
101
+			$this->queryStructure->getElement(QueryStructure::BIND_PARAMS)
102 102
 		);
103 103
 	}
104 104
 
Please login to merge, or discard this patch.
src/Statements/QuerySelect.php 2 patches
Spacing   +33 added lines, -33 removed lines patch added patch discarded remove patch
@@ -42,21 +42,21 @@  discard block
 block discarded – undo
42 42
 	 * @param QueryBuild $queryBuild
43 43
 	 * @param string|QueryStatement $table
44 44
 	 */
45
-	public function __construct( QueryBuild $queryBuild, $table )
45
+	public function __construct(QueryBuild $queryBuild, $table)
46 46
 	{
47
-		parent::__construct( $queryBuild, $table );
47
+		parent::__construct($queryBuild, $table);
48 48
 
49
-		if ( is_a( $table, QuerySelect::class ) ) {
49
+		if (is_a($table, QuerySelect::class)) {
50 50
 
51 51
 			/**
52 52
 			 * @var QuerySelect $table
53 53
 			 */
54 54
 			$tableName = '( ' . $table->getSyntax() . ' )';
55
-			$this->queryStructure->setElement( QueryStructure::TABLE, $tableName );
55
+			$this->queryStructure->setElement(QueryStructure::TABLE, $tableName);
56 56
 
57 57
 			$tableSelectParams = $table->getBindParams();
58
-			foreach ( $tableSelectParams as $key => $value )
59
-				$this->queryStructure->setParams( $key, $value );
58
+			foreach ($tableSelectParams as $key => $value)
59
+				$this->queryStructure->setParams($key, $value);
60 60
 
61 61
 		}
62 62
 	}
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
 	 */
67 67
 	public function first()
68 68
 	{
69
-		$this->queryStructure->setElement( QueryStructure::FIRST, 1 );
69
+		$this->queryStructure->setElement(QueryStructure::FIRST, 1);
70 70
 
71 71
 		return $this;
72 72
 	}
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
 	 */
77 77
 	public function count()
78 78
 	{
79
-		$this->queryStructure->setElement( QueryStructure::COUNT, 1 );
79
+		$this->queryStructure->setElement(QueryStructure::COUNT, 1);
80 80
 
81 81
 		return $this;
82 82
 	}
@@ -85,10 +85,10 @@  discard block
 block discarded – undo
85 85
 	 * @param $column
86 86
 	 * @return $this
87 87
 	 */
88
-	public function column( $column )
88
+	public function column($column)
89 89
 	{
90
-		$column = QueryHelper::clearMultipleSpaces( $column );
91
-		$this->queryStructure->setElement( QueryStructure::COLUMN, $column );
90
+		$column = QueryHelper::clearMultipleSpaces($column);
91
+		$this->queryStructure->setElement(QueryStructure::COLUMN, $column);
92 92
 
93 93
 		return $this;
94 94
 	}
@@ -98,17 +98,17 @@  discard block
 block discarded – undo
98 98
 	 * @param bool|int $replacement
99 99
 	 * @return mixed|string
100 100
 	 */
101
-	public function getSyntax( $replacement = self::REPLACEMENT_NONE )
101
+	public function getSyntax($replacement = self::REPLACEMENT_NONE)
102 102
 	{
103 103
 
104
-		if ( $this->queryStructure->getElement( QueryStructure::COUNT ) ) {
105
-			$this->queryStructure->setElement( QueryStructure::FIELDS, 'COUNT(*)' );
106
-			$this->queryStructure->setElement( QueryStructure::LIMIT, 1 );
107
-			$this->queryStructure->setElement( QueryStructure::DISTINCT, 0 ); //???
104
+		if ($this->queryStructure->getElement(QueryStructure::COUNT)) {
105
+			$this->queryStructure->setElement(QueryStructure::FIELDS, 'COUNT(*)');
106
+			$this->queryStructure->setElement(QueryStructure::LIMIT, 1);
107
+			$this->queryStructure->setElement(QueryStructure::DISTINCT, 0); //???
108 108
 		}
109 109
 
110
-		if ( $this->queryStructure->getElement( QueryStructure::FIRST ) )
111
-			$this->queryStructure->setElement( QueryStructure::LIMIT, 1 );
110
+		if ($this->queryStructure->getElement(QueryStructure::FIRST))
111
+			$this->queryStructure->setElement(QueryStructure::LIMIT, 1);
112 112
 
113 113
 		$syntax = array();
114 114
 
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
 		/**
126 126
 		 * PRIORITY
127 127
 		 */
128
-		$syntax[] = $this->queryStructure->getElement( QueryStructure::PRIORITY );
128
+		$syntax[] = $this->queryStructure->getElement(QueryStructure::PRIORITY);
129 129
 
130 130
 		/**
131 131
 		 * DISTINCT clause
@@ -135,12 +135,12 @@  discard block
 block discarded – undo
135 135
 		/**
136 136
 		 * FIELDS
137 137
 		 */
138
-		$syntax[] = $this->queryStructure->getElement( QueryStructure::FIELDS );
138
+		$syntax[] = $this->queryStructure->getElement(QueryStructure::FIELDS);
139 139
 
140 140
 		/**
141 141
 		 * FROM table or queryStructure
142 142
 		 */
143
-		$syntax[] = 'FROM ' . $this->queryStructure->getElement( QueryStructure::TABLE );
143
+		$syntax[] = 'FROM ' . $this->queryStructure->getElement(QueryStructure::TABLE);
144 144
 
145 145
 		/**
146 146
 		 * JOIN CLAUSES
@@ -172,9 +172,9 @@  discard block
 block discarded – undo
172 172
 		 */
173 173
 		$syntax[] = $this->getLimitSyntax();
174 174
 
175
-		$syntax = implode( ' ', $syntax );
175
+		$syntax = implode(' ', $syntax);
176 176
 
177
-		return $this->getSyntaxReplace( $syntax, $replacement );
177
+		return $this->getSyntaxReplace($syntax, $replacement);
178 178
 
179 179
 	}
180 180
 
@@ -185,21 +185,21 @@  discard block
 block discarded – undo
185 185
 	public function execute()
186 186
 	{
187 187
 
188
-		switch ( true ) {
189
-			case $this->queryStructure->getElement( QueryStructure::COUNT ):
190
-				return DbService::getInstance()->single( $this->getSyntax(), $this->queryStructure->getElement( QueryStructure::BIND_PARAMS ) );
188
+		switch (true) {
189
+			case $this->queryStructure->getElement(QueryStructure::COUNT):
190
+				return DbService::getInstance()->single($this->getSyntax(), $this->queryStructure->getElement(QueryStructure::BIND_PARAMS));
191 191
 				break;
192
-			case $this->queryStructure->getElement( QueryStructure::FIRST ):
193
-				if ( $this->queryStructure->getElement( QueryStructure::COLUMN ) )
194
-					return DbService::getInstance()->single( $this->getSyntax(), $this->queryStructure->getElement( QueryStructure::BIND_PARAMS ) );
192
+			case $this->queryStructure->getElement(QueryStructure::FIRST):
193
+				if ($this->queryStructure->getElement(QueryStructure::COLUMN))
194
+					return DbService::getInstance()->single($this->getSyntax(), $this->queryStructure->getElement(QueryStructure::BIND_PARAMS));
195 195
 
196
-				return DbService::getInstance()->row( $this->getSyntax(), $this->queryStructure->getElement( QueryStructure::BIND_PARAMS ) );
196
+				return DbService::getInstance()->row($this->getSyntax(), $this->queryStructure->getElement(QueryStructure::BIND_PARAMS));
197 197
 				break;
198
-			case $this->queryStructure->getElement( QueryStructure::COLUMN ):
199
-				return DbService::getInstance()->column( $this->getSyntax(), $this->queryStructure->getElement( QueryStructure::BIND_PARAMS ) );
198
+			case $this->queryStructure->getElement(QueryStructure::COLUMN):
199
+				return DbService::getInstance()->column($this->getSyntax(), $this->queryStructure->getElement(QueryStructure::BIND_PARAMS));
200 200
 				break;
201 201
 			default:
202
-				return DbService::getInstance()->query( $this->getSyntax(), $this->queryStructure->getElement( QueryStructure::BIND_PARAMS ) );
202
+				return DbService::getInstance()->query($this->getSyntax(), $this->queryStructure->getElement(QueryStructure::BIND_PARAMS));
203 203
 				break;
204 204
 		}
205 205
 	}
Please login to merge, or discard this patch.
Braces   +9 added lines, -6 removed lines patch added patch discarded remove patch
@@ -55,8 +55,9 @@  discard block
 block discarded – undo
55 55
 			$this->queryStructure->setElement( QueryStructure::TABLE, $tableName );
56 56
 
57 57
 			$tableSelectParams = $table->getBindParams();
58
-			foreach ( $tableSelectParams as $key => $value )
59
-				$this->queryStructure->setParams( $key, $value );
58
+			foreach ( $tableSelectParams as $key => $value ) {
59
+							$this->queryStructure->setParams( $key, $value );
60
+			}
60 61
 
61 62
 		}
62 63
 	}
@@ -107,8 +108,9 @@  discard block
 block discarded – undo
107 108
 			$this->queryStructure->setElement( QueryStructure::DISTINCT, 0 ); //???
108 109
 		}
109 110
 
110
-		if ( $this->queryStructure->getElement( QueryStructure::FIRST ) )
111
-			$this->queryStructure->setElement( QueryStructure::LIMIT, 1 );
111
+		if ( $this->queryStructure->getElement( QueryStructure::FIRST ) ) {
112
+					$this->queryStructure->setElement( QueryStructure::LIMIT, 1 );
113
+		}
112 114
 
113 115
 		$syntax = array();
114 116
 
@@ -190,8 +192,9 @@  discard block
 block discarded – undo
190 192
 				return DbService::getInstance()->single( $this->getSyntax(), $this->queryStructure->getElement( QueryStructure::BIND_PARAMS ) );
191 193
 				break;
192 194
 			case $this->queryStructure->getElement( QueryStructure::FIRST ):
193
-				if ( $this->queryStructure->getElement( QueryStructure::COLUMN ) )
194
-					return DbService::getInstance()->single( $this->getSyntax(), $this->queryStructure->getElement( QueryStructure::BIND_PARAMS ) );
195
+				if ( $this->queryStructure->getElement( QueryStructure::COLUMN ) ) {
196
+									return DbService::getInstance()->single( $this->getSyntax(), $this->queryStructure->getElement( QueryStructure::BIND_PARAMS ) );
197
+				}
195 198
 
196 199
 				return DbService::getInstance()->row( $this->getSyntax(), $this->queryStructure->getElement( QueryStructure::BIND_PARAMS ) );
197 200
 				break;
Please login to merge, or discard this patch.
src/Statements/QueryDelete.php 2 patches
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -40,12 +40,12 @@  discard block
 block discarded – undo
40 40
 	 * @param QueryBuild $queryBuild
41 41
 	 * @param null $table
42 42
 	 */
43
-	public function __construct( QueryBuild $queryBuild, $table = null )
43
+	public function __construct(QueryBuild $queryBuild, $table = null)
44 44
 	{
45
-		parent::__construct( $queryBuild, $table );
45
+		parent::__construct($queryBuild, $table);
46 46
 	}
47 47
 
48
-	public function getSyntax( $replacement = self::REPLACEMENT_NONE )
48
+	public function getSyntax($replacement = self::REPLACEMENT_NONE)
49 49
 	{
50 50
 		$syntax = array();
51 51
 
@@ -62,12 +62,12 @@  discard block
 block discarded – undo
62 62
 		/**
63 63
 		 * PRIORITY
64 64
 		 */
65
-		$syntax[] = $this->queryStructure->getElement( QueryStructure::PRIORITY );
65
+		$syntax[] = $this->queryStructure->getElement(QueryStructure::PRIORITY);
66 66
 
67 67
 		/**
68 68
 		 * TABLE update
69 69
 		 */
70
-		$syntax[] = 'FROM ' . $this->queryStructure->getElement( QueryStructure::TABLE );
70
+		$syntax[] = 'FROM ' . $this->queryStructure->getElement(QueryStructure::TABLE);
71 71
 
72 72
 		/**
73 73
 		 * WHERE clause
@@ -84,9 +84,9 @@  discard block
 block discarded – undo
84 84
 		 */
85 85
 		$syntax[] = $this->getLimitSyntax();
86 86
 
87
-		$syntax = implode( ' ', $syntax );
87
+		$syntax = implode(' ', $syntax);
88 88
 
89
-		return $this->getSyntaxReplace( $syntax, $replacement );
89
+		return $this->getSyntaxReplace($syntax, $replacement);
90 90
 	}
91 91
 
92 92
 	/**
@@ -97,14 +97,14 @@  discard block
 block discarded – undo
97 97
 	{
98 98
 
99 99
 		if (
100
-			$this->queryStructure->getElement( ( QueryStructure::WHERE_TRIGGER ) ) &&
101
-			!count( $this->queryStructure->getElement( QueryStructure::WHERE ) )
100
+			$this->queryStructure->getElement((QueryStructure::WHERE_TRIGGER)) &&
101
+			!count($this->queryStructure->getElement(QueryStructure::WHERE))
102 102
 		)
103
-			throw new QueryException( 'Where or Having clause is required for this statement!', QueryException::QUERY_ERROR_DELETE_NOT_FILTER );
103
+			throw new QueryException('Where or Having clause is required for this statement!', QueryException::QUERY_ERROR_DELETE_NOT_FILTER);
104 104
 
105 105
 		return DbService::getInstance()->query(
106 106
 			$this->getSyntax(),
107
-			$this->queryStructure->getElement( QueryStructure::BIND_PARAMS )
107
+			$this->queryStructure->getElement(QueryStructure::BIND_PARAMS)
108 108
 		);
109 109
 
110 110
 	}
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -99,8 +99,9 @@
 block discarded – undo
99 99
 		if (
100 100
 			$this->queryStructure->getElement( ( QueryStructure::WHERE_TRIGGER ) ) &&
101 101
 			!count( $this->queryStructure->getElement( QueryStructure::WHERE ) )
102
-		)
103
-			throw new QueryException( 'Where or Having clause is required for this statement!', QueryException::QUERY_ERROR_DELETE_NOT_FILTER );
102
+		) {
103
+					throw new QueryException( 'Where or Having clause is required for this statement!', QueryException::QUERY_ERROR_DELETE_NOT_FILTER );
104
+		}
104 105
 
105 106
 		return DbService::getInstance()->query(
106 107
 			$this->getSyntax(),
Please login to merge, or discard this patch.
config/qpdb_db_config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 
10 10
 	'replicationEnable' => false,
11 11
 
12
-	'slave_statements' => [ 'SELECT' ],
12
+	'slave_statements' => ['SELECT'],
13 13
 
14 14
 	/**
15 15
 	 * if not Replication support use only first entry in master_data_connect
Please login to merge, or discard this patch.
sample/select.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -11,13 +11,13 @@
 block discarded – undo
11 11
 include_once $_SERVER['DOCUMENT_ROOT'] . '/vendor/autoload.php';
12 12
 
13 13
 
14
-$query = QueryBuild::select( 'employees' )
14
+$query = QueryBuild::select('employees')
15 15
 	->fields('lastName, jobTitle, officeCode')
16
-	->whereEqual( 'jobTitle', "Sales Rep" )
17
-	->whereIn( 'officeCode', [ 2, 3, 4 ] );
16
+	->whereEqual('jobTitle', "Sales Rep")
17
+	->whereIn('officeCode', [2, 3, 4]);
18 18
 
19 19
 
20
-echo "<pre>" . print_r( $query->getSyntax(), 1 ) . "</pre>";
21
-echo "<pre>" . print_r( $query->getBindParams(), 1 ) . "</pre>";
22
-echo "<pre>" . print_r( $query->getSyntax( 1 ), 1 ) . "</pre>";
23
-echo "<pre>" . print_r( $query->execute(), 1 ) . "</pre>";
24 20
\ No newline at end of file
21
+echo "<pre>" . print_r($query->getSyntax(), 1) . "</pre>";
22
+echo "<pre>" . print_r($query->getBindParams(), 1) . "</pre>";
23
+echo "<pre>" . print_r($query->getSyntax(1), 1) . "</pre>";
24
+echo "<pre>" . print_r($query->execute(), 1) . "</pre>";
25 25
\ No newline at end of file
Please login to merge, or discard this patch.