@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | * @param array $types |
| 50 | 50 | * |
| 51 | 51 | * @return array |
| 52 | - */ |
|
| 52 | + */ |
|
| 53 | 53 | protected function values(array $row, array $blobs, array $types): array |
| 54 | 54 | { |
| 55 | 55 | $values = []; |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | * @param int $limit |
| 77 | 77 | * |
| 78 | 78 | * @return string |
| 79 | - */ |
|
| 79 | + */ |
|
| 80 | 80 | private function message($statement, int $limit): string |
| 81 | 81 | { |
| 82 | 82 | $numRows = $statement->rowCount(); |
@@ -98,7 +98,7 @@ discard block |
||
| 98 | 98 | * @param int $limit |
| 99 | 99 | * |
| 100 | 100 | * @return array |
| 101 | - */ |
|
| 101 | + */ |
|
| 102 | 102 | protected function select($statement, int $limit = 0): array |
| 103 | 103 | { |
| 104 | 104 | // No resultset |
@@ -208,8 +208,7 @@ |
||
| 208 | 208 | try { |
| 209 | 209 | ini_set('memory_limit', max($this->admin->iniBytes('memory_limit'), |
| 210 | 210 | 2 * strlen($queries) + memory_get_usage() + 8e6)); |
| 211 | - } |
|
| 212 | - catch(\Exception $e) { |
|
| 211 | + } catch(\Exception $e) { |
|
| 213 | 212 | // Do nothing if the option is not modified. |
| 214 | 213 | } |
| 215 | 214 | } |
@@ -145,8 +145,7 @@ |
||
| 145 | 145 | } |
| 146 | 146 | if ($this->isMail($value)) { |
| 147 | 147 | return '<a href="' . $this->utils->html("mailto:$value") . '">' . $value . '</a>'; |
| 148 | - } |
|
| 149 | - elseif ($this->isUrl($value)) { |
|
| 148 | + } elseif ($this->isUrl($value)) { |
|
| 150 | 149 | // IE 11 and all modern browsers hide referrer |
| 151 | 150 | return '<a href="' . $this->utils->html($value) . '"' . $this->blankTarget() . '>' . $value . '</a>'; |
| 152 | 151 | } |
@@ -279,8 +279,7 @@ |
||
| 279 | 279 | foreach ($databases as $database => $tables) { |
| 280 | 280 | try { |
| 281 | 281 | $this->dumpDatabase($database, $tables); |
| 282 | - } |
|
| 283 | - catch (Exception $e) { |
|
| 282 | + } catch (Exception $e) { |
|
| 284 | 283 | return $e->getMessage(); |
| 285 | 284 | } |
| 286 | 285 | } |