Passed
Push — master ( d0230e...9b3e77 )
by Adrian
01:36
created
src/Statements/QueryInsertMultiple.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -49,32 +49,32 @@
 block discarded – undo
49 49
 		/**
50 50
 		 *  Explain
51 51
 		 */
52
-		$syntax[] = $this->getExplainSyntax();
52
+		$syntax[ ] = $this->getExplainSyntax();
53 53
 
54 54
 		/**
55 55
 		 * UPDATE statement
56 56
 		 */
57
-		$syntax[] = $this->statement;
57
+		$syntax[ ] = $this->statement;
58 58
 
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
-		$syntax[] = $this->getInsertMultipleRowsSyntax();
77
+		$syntax[ ] = $this->getInsertMultipleRowsSyntax();
78 78
 
79 79
 		$syntax = implode( ' ', $syntax );
80 80
 
Please login to merge, or discard this patch.