Passed
Pull Request — master (#188)
by Damien
02:36
created
src/DoctrineAuditBundle/Model/Transaction.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -18,27 +18,27 @@
 block discarded – undo
18 18
     /**
19 19
      * @var array
20 20
      */
21
-    private $inserted = [];     // [$source, $changeset]
21
+    private $inserted = []; // [$source, $changeset]
22 22
 
23 23
     /**
24 24
      * @var array
25 25
      */
26
-    private $updated = [];      // [$source, $changeset]
26
+    private $updated = []; // [$source, $changeset]
27 27
 
28 28
     /**
29 29
      * @var array
30 30
      */
31
-    private $removed = [];      // [$source, $id]
31
+    private $removed = []; // [$source, $id]
32 32
 
33 33
     /**
34 34
      * @var array
35 35
      */
36
-    private $associated = [];   // [$source, $target, $mapping]
36
+    private $associated = []; // [$source, $target, $mapping]
37 37
 
38 38
     /**
39 39
      * @var array
40 40
      */
41
-    private $dissociated = [];  // [$source, $target, $id, $mapping]
41
+    private $dissociated = []; // [$source, $target, $id, $mapping]
42 42
 
43 43
     /**
44 44
      * Returns transaction hash.
Please login to merge, or discard this patch.