From 734ec3d5c48248ca692ccbd05035e6268272b2d5 Mon Sep 17 00:00:00 2001 From: Daniel Carbone Date: Fri, 8 Aug 2014 17:27:21 -0500 Subject: [PATCH] Couple of missed strings relating to it's internal dev name --- src/UglyQueue.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/UglyQueue.php b/src/UglyQueue.php index e319b1d..318b1d2 100644 --- a/src/UglyQueue.php +++ b/src/UglyQueue.php @@ -88,7 +88,7 @@ class UglyQueue } /** - * Close file_queue, writing out contents to file. + * Close this ugly queue, writing out contents to file. */ public function unlock() { @@ -173,7 +173,7 @@ HTML; public function processQueue($count = 1) { if ($this->init === false) - throw new \RuntimeException('file_queue::load_queue_data - Must first initialize queue!'); + throw new \RuntimeException('UglyQueue::processQueue - Must first initialize queue!'); // If we don't have a lock, assume issue and move on. if ($this->haveLock === false || !file_exists($this->queueGroupDirPath.'queue.txt')) @@ -244,7 +244,7 @@ HTML; public function addToQueue($key, $value) { if ($this->init === false) - throw new \RuntimeException('file_queue::add_to_queue - Must first initialize queue!'); + throw new \RuntimeException('UglyQueue::addToQueue - Must first initialize queue!'); // If we don't have a lock, assume issue and move on. if ($this->haveLock === false)