diff --git a/lib/Predis/Commands/Quit.php b/lib/Predis/Commands/Quit.php index 97a485a6..cd86fa57 100644 --- a/lib/Predis/Commands/Quit.php +++ b/lib/Predis/Commands/Quit.php @@ -5,5 +5,4 @@ namespace Predis\Commands; class Quit extends Command { public function canBeHashed() { return false; } public function getId() { return 'QUIT'; } - public function closesConnection() { return true; } } diff --git a/lib/Predis/Commands/Shutdown.php b/lib/Predis/Commands/Shutdown.php index ce0a9c3f..e300357b 100644 --- a/lib/Predis/Commands/Shutdown.php +++ b/lib/Predis/Commands/Shutdown.php @@ -5,5 +5,4 @@ namespace Predis\Commands; class Shutdown extends Command { public function canBeHashed() { return false; } public function getId() { return 'SHUTDOWN'; } - public function closesConnection() { return true; } }