Completed
Branch master (9a32cb)
by Aimeos
02:31
created
lib/custom/src/MW/Mail/Message/Zend.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -257,8 +257,7 @@
 block discarded – undo
257 257
 			$related->boundary = $msg->getMime()->boundary();
258 258
 			$related->disposition = null;
259 259
 			$related->charset = null;
260
-		}
261
-		else if( $this->html != null )
260
+		} else if( $this->html != null )
262 261
 		{
263 262
 			$this->object->setBodyHtml( $this->html );
264 263
 		}
Please login to merge, or discard this patch.
lib/custom/src/MW/Translation/Zend.php 1 patch
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -70,7 +70,9 @@  discard block
 block discarded – undo
70 70
 				}
71 71
 			}
72 72
 		}
73
-		catch( \Exception $e ) { ; } // Discard exceptions, return the original string instead
73
+		catch( \Exception $e )
74
+		{
75
+; } // Discard exceptions, return the original string instead
74 76
 
75 77
 		return (string) $string;
76 78
 	}
@@ -99,7 +101,9 @@  discard block
 block discarded – undo
99 101
 				}
100 102
 			}
101 103
 		}
102
-		catch( \Exception $e ) { ; } // Discard exceptions, return the original string instead
104
+		catch( \Exception $e )
105
+		{
106
+; } // Discard exceptions, return the original string instead
103 107
 
104 108
 		if( $this->getPluralIndex( $number, $this->getLocale() ) > 0 ) {
105 109
 			return (string) $plural;
Please login to merge, or discard this patch.
lib/custom/src/MW/Logger/Zend.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,8 @@
 block discarded – undo
53 53
 
54 54
 			$this->logger->log( '<' . $facility . '> ' . $message, $priority );
55 55
 		}
56
-		catch( \Zend_Log_Exception $ze )	{
56
+		catch( \Zend_Log_Exception $ze )
57
+		{
57 58
 			throw new \Aimeos\MW\Logger\Exception( $ze->getMessage() );
58 59
 		}
59 60
 	}
Please login to merge, or discard this patch.