Passed
Branch develop (b9ec32)
by David
02:33
created
src/Sql/Query.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
  */
41 41
 class Query {
42 42
     
43
-    public static function with(){
43
+    public static function with() {
44 44
         return new static();
45 45
     }
46 46
 
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
      * @param WhereStatementInterface $where
68 68
      * @return Delete
69 69
      */
70
-    public function delete($table, WhereStatementInterface $where = null){
70
+    public function delete($table, WhereStatementInterface $where = null) {
71 71
         return new Delete($table, $where);
72 72
     }
73 73
 }
Please login to merge, or discard this patch.