Passed
Push — master ( d27da3...a4dbe3 )
by Aimeos
08:06
created
src/DB/Result/DBAL.php 1 patch
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,9 +60,12 @@
 block discarded – undo
60 60
 	 */
61 61
 	public function affectedRows() : int
62 62
 	{
63
-		try {
63
+		try
64
+		{
64 65
 			return $this->result->rowCount();
65
-		} catch( \Doctrine\DBAL\Driver\Exception $e ) {
66
+		}
67
+		catch( \Doctrine\DBAL\Driver\Exception $e )
68
+		{
66 69
 			throw new \Aimeos\Base\DB\Exception( $e->getMessage(), $e->getCode() );
67 70
 		}
68 71
 	}
Please login to merge, or discard this patch.