Passed
Push — master ( b12b63...8e6e26 )
by Henri
08:15
created
src/CrudTrait.php 1 patch
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 
47 47
             $stmt->execute($data);
48 48
             return $stmt->fetchAll(PDO::FETCH_ASSOC);
49
-        }catch(Exception $exception){
49
+        } catch(Exception $exception){
50 50
             $this->fail = new DatamanagerException($exception->getMessage(), $exception->getCode(), $exception);
51 51
         }
52 52
         return [];
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 
63 63
             $stmt->execute();
64 64
             return $stmt->fetchAll(PDO::FETCH_ASSOC);
65
-        }catch(Exception $exception){
65
+        } catch(Exception $exception){
66 66
             $this->fail = new DatamanagerException($exception->getMessage(), $exception->getCode(), $exception);
67 67
             return [];
68 68
         }
Please login to merge, or discard this patch.