Passed
Push — dev ( 0bf166...1ce27a )
by Plamen
03:38
created
TraitQuery.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,8 +17,7 @@
 block discarded – undo
17 17
         array $order = [],
18 18
         $limit = 0,
19 19
         $useHaving = false
20
-    )
21
-    {
20
+    ) {
22 21
         //Condition: '' | ' (HAVING|WHERE|AND) ' . $cond
23 22
         self::queryConditions($query, $cond, $useHaving);
24 23
 
Please login to merge, or discard this patch.
tests/TableTest.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,8 @@
 block discarded – undo
25 25
         $this->assertSame('second', $b);
26 26
     }
27 27
     
28
-    public function testprepare(){
28
+    public function testprepare()
29
+    {
29 30
         $this->assertSame(Table::$pageExt, null);
30 31
         var_dump('passed');
31 32
     }
Please login to merge, or discard this patch.
tests/bootstrap.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 /*spl_autoload(function($class){
3 3
     require __DIR__ . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . $class;
4 4
 });*/
5
-spl_autoload(function(/*$class*/){
5
+spl_autoload(function(/*$class*/) {
6 6
     require './vendor/autoload.php';
7 7
     //require __DIR__ . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . $class;
8 8
 });
9 9
\ No newline at end of file
Please login to merge, or discard this patch.