From d362c9adf83c66cedb810f407d5a96db7127c6a8 Mon Sep 17 00:00:00 2001 From: Solaiman Kmail Date: Mon, 11 Dec 2017 14:48:52 +0200 Subject: [PATCH] Fix method accessibility issue with Base method --- src/Db.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Db.php b/src/Db.php index 7edc20e..50a2d5f 100644 --- a/src/Db.php +++ b/src/Db.php @@ -472,7 +472,7 @@ public function read($length = 0) throw new BadMethod('"read" is not a valid method in DB queues.'); } - protected function write($data) + public function write($data) { throw new BadMethod('"write" is not a valid method in DB queues.'); }