Passed
Push — master ( 6215ec...1255dc )
by Darío
01:47
created
src/Pear/Mail.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -131,7 +131,7 @@
 block discarded – undo
131 131
         if (\PEAR::isError($mail))
132 132
         {
133 133
             $this->error(
134
-            	$mail->getCode(), $mail->getMessage()
134
+                $mail->getCode(), $mail->getMessage()
135 135
             );
136 136
 
137 137
             return false;
Please login to merge, or discard this patch.
src/Db/TableGateway/TableGatewayInterface.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -22,14 +22,14 @@  discard block
 block discarded – undo
22 22
      *
23 23
      * @param array $where
24 24
      */
25
-	public function select(Array $where);
25
+    public function select(Array $where);
26 26
 
27 27
     /**
28 28
      * Insert statement
29 29
      *
30 30
      * @param array $data
31 31
      */
32
-	public function insert(Array $data);
32
+    public function insert(Array $data);
33 33
 
34 34
     /**
35 35
      * Update statement
@@ -37,12 +37,12 @@  discard block
 block discarded – undo
37 37
      * @param array $set
38 38
      * @param array $where
39 39
      */
40
-	public function update(Array $set, Array $where);
40
+    public function update(Array $set, Array $where);
41 41
 
42 42
     /**
43 43
      * Delete statement
44 44
      *
45 45
      * @param array $where
46 46
      */
47
-	public function delete(Array $where);
47
+    public function delete(Array $where);
48 48
 }
49 49
\ No newline at end of file
Please login to merge, or discard this patch.
test/FileSystem/ShellTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -194,7 +194,7 @@
 block discarded – undo
194 194
         $this->assertTrue(is_dir('foo4/foo2'));
195 195
         $this->assertTrue(file_exists('foo4/foo2/new3.txt'));
196 196
         $this->assertTrue(file_exists('foo4/foo2/new4.txt'));
197
-   }
197
+    }
198 198
 
199 199
     /**
200 200
      * Tests removing files
Please login to merge, or discard this patch.
test/Db/TableGateway/EntityAdapterTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -252,7 +252,7 @@
 block discarded – undo
252 252
     {
253 253
         parent::__construct($data);
254 254
         $this->setTableName("USER");
255
-   }
255
+    }
256 256
 }
257 257
 
258 258
 class UserGateway extends TableGateway
Please login to merge, or discard this patch.
test/Db/TableGateway/TableGatewayTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -440,7 +440,7 @@
 block discarded – undo
440 440
     {
441 441
         parent::__construct($data);
442 442
         $this->setTableName("MYTABLE");
443
-   }
443
+    }
444 444
 }
445 445
 
446 446
 class MyEntityGateway extends TableGateway
Please login to merge, or discard this patch.