From 294a2da60222c2f789bcaabd779b3321df0f11a3 Mon Sep 17 00:00:00 2001 From: fmizzell Date: Fri, 22 Nov 2019 15:44:11 -0600 Subject: [PATCH 1/2] New storage expectations. --- src/Harvester.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Harvester.php b/src/Harvester.php index 1a96dfb..eccefd6 100644 --- a/src/Harvester.php +++ b/src/Harvester.php @@ -20,7 +20,7 @@ public function __construct(Factory $factory) public function revert() { - $ids = array_keys($this->factory->hashStorage->retrieveAll()); + $ids = $this->factory->hashStorage->retrieveAll(); $load = $this->factory->get("load"); $counter = 0; foreach ($ids as $id) { From 47e912d13cb963129e21dfef46fc7745614b8c5a Mon Sep 17 00:00:00 2001 From: fmizzell Date: Wed, 8 Jan 2020 09:25:28 -0600 Subject: [PATCH 2/2] Fix unittests and code style issues. --- src/ResultInterpreter.php | 1 - test/MemStore.php | 4 ++++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/ResultInterpreter.php b/src/ResultInterpreter.php index 6738a80..2fc733c 100644 --- a/src/ResultInterpreter.php +++ b/src/ResultInterpreter.php @@ -1,6 +1,5 @@