Completed
Push — master ( 8b98c7...ef6d3d )
by Raymond
02:09
created
src/Util/InternalIteratorTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     /**
21 21
      * Return the current element
22 22
      * @link  http://php.net/manual/en/iterator.current.php
23
-     * @return mixed Can return any type.
23
+     * @return \RayRutjes\GetEventStore\EventData Can return any type.
24 24
      * @since 5.0.0
25 25
      */
26 26
     public function current()
Please login to merge, or discard this patch.
src/EventDataCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
      */
30 30
     public function count()
31 31
     {
32
-        if($this->iterator instanceof \Countable) {
32
+        if ($this->iterator instanceof \Countable) {
33 33
             return $this->iterator->count();
34 34
         }
35 35
         return 0;
Please login to merge, or discard this patch.
src/EventRecordCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
      */
30 30
     public function count()
31 31
     {
32
-        if($this->iterator instanceof \Countable) {
32
+        if ($this->iterator instanceof \Countable) {
33 33
             return $this->iterator->count();
34 34
         }
35 35
         return 0;
Please login to merge, or discard this patch.