@@ -131,7 +131,7 @@ |
||
| 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; |
@@ -22,10 +22,10 @@ |
||
| 22 | 22 | * |
| 23 | 23 | * @var integer |
| 24 | 24 | */ |
| 25 | - const FILE_PERMISSION_DENIED = 1; |
|
| 26 | - const FILE_NOT_FOUND = 2; |
|
| 27 | - const FILE_EXISTS = 3; |
|
| 28 | - const NOT_DIRECTORY = 4; |
|
| 25 | + const FILE_PERMISSION_DENIED = 1; |
|
| 26 | + const FILE_NOT_FOUND = 2; |
|
| 27 | + const FILE_EXISTS = 3; |
|
| 28 | + const NOT_DIRECTORY = 4; |
|
| 29 | 29 | |
| 30 | 30 | /** |
| 31 | 31 | * Common JSON errors |
@@ -22,14 +22,14 @@ discard block |
||
| 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 |
||
| 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 |
@@ -194,7 +194,7 @@ |
||
| 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 |