Completed
Push — master ( 17cd5a...3adfc7 )
by Thomas
02:38
created
src/Indexer.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,10 +54,10 @@
 block discarded – undo
54 54
     {
55 55
         $this->index[$key][$operation->idx($this->connection)] = $operation;
56 56
         $indexer = $this;
57
-        $operation->onCommit(function ($operation) use ($key, $indexer) {
57
+        $operation->onCommit(function($operation) use ($key, $indexer) {
58 58
             $indexer->deIndex($key, $operation);
59 59
         });
60
-        $operation->onRollback(function ($operation) use ($key, $indexer) {
60
+        $operation->onRollback(function($operation) use ($key, $indexer) {
61 61
             $indexer->deIndex($key, $operation);
62 62
         });
63 63
         return $operation;
Please login to merge, or discard this patch.
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 {
12 12
     /**
13 13
      * Operations indexed by key and operation index.
14
-
15 14
      * @var Operation[][]
16 15
      */
17 16
     protected $index = [];
Please login to merge, or discard this patch.