From 94fddca547893074eab2954c4efd6c335604c506 Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Mon, 28 Sep 2015 18:30:53 +0300 Subject: [PATCH] remove the Beanstalkd testing code from Laravel --- .../Http/Controllers/TestingController.php | 4 +--- laravel/app/Jobs/TestingQueue.php | 24 ------------------- 2 files changed, 1 insertion(+), 27 deletions(-) delete mode 100644 laravel/app/Jobs/TestingQueue.php diff --git a/laravel/app/Http/Controllers/TestingController.php b/laravel/app/Http/Controllers/TestingController.php index 3728792..247d7a3 100644 --- a/laravel/app/Http/Controllers/TestingController.php +++ b/laravel/app/Http/Controllers/TestingController.php @@ -32,10 +32,8 @@ class TestingController extends Controller // Testing Cache (Redis) Cache::pull('test'); - // Testing Queue (Beanstalkd) - $this->dispatch(new TestingQueue()); - return view('welcome'); + } catch(Exception $e) { echo $e->getMessage(); } diff --git a/laravel/app/Jobs/TestingQueue.php b/laravel/app/Jobs/TestingQueue.php deleted file mode 100644 index 7c3e796..0000000 --- a/laravel/app/Jobs/TestingQueue.php +++ /dev/null @@ -1,24 +0,0 @@ -