Completed
Pull Request — master (#41)
by David
11:45
created
src/EventStore/EventStore.php 1 patch
Doc Comments   +1 added lines, -5 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@  discard block
 block discarded – undo
14 14
     // Implement these in your concretion
15 15
 
16 16
     /**
17
-     * @param EventSourcedEntity $eventSourcedEntity
18 17
      * @param object             $event
19 18
      *
20 19
      * @throws InvalidEventException
@@ -43,8 +42,6 @@  discard block
 block discarded – undo
43 42
     /**
44 43
      * Store an EventSourcedEntity's staged events.
45 44
      *
46
-     * @param string $key
47
-     * @param array  $events
48 45
      *
49 46
      * @throws InvalidEventException
50 47
      */
@@ -64,8 +61,8 @@  discard block
 block discarded – undo
64 61
     /**
65 62
      * Returns all events for $entityIdentifier.
66 63
      *
67
-     * @param string $key
68 64
      *
65
+     * @param string $entityIdentifier
69 66
      * @return array
70 67
      */
71 68
     public function retrieve($entityIdentifier)
@@ -80,7 +77,6 @@  discard block
 block discarded – undo
80 77
     /**
81 78
      * Returns all the log entries for $entityIdentifier.
82 79
      *
83
-     * @param string $key
84 80
      *
85 81
      * @return array
86 82
      */
Please login to merge, or discard this patch.
src/EventStore/InMemoryEventStore/InMemoryEventStore.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,6 @@
 block discarded – undo
20 20
     private $transactionBackup = [];
21 21
 
22 22
     /**
23
-     * @param EventSourcedEntity $eventSourcedEntity
24 23
      * @param object             $event
25 24
      *
26 25
      * @throws InvalidEventException
Please login to merge, or discard this patch.