Example #1
0
 /**
  * @return mixed[]
  */
 public function allEvents()
 {
     $all = [];
     foreach ($this->store->keys() as $key) {
         $all = array_merge($all, $this->store->read($key));
     }
     return $all;
 }