Files
predis/lib/Predis/Protocols/Text/ResponseIntegerHandler.php
T
2011-04-06 17:52:39 +02:00

22 lines
585 B
PHP

<?php
namespace Predis\Protocols\Text;
use Predis\Helpers;
use Predis\Protocols\IResponseHandler;
use Predis\Network\IConnectionComposable;
class ResponseIntegerHandler implements IResponseHandler {
public function handle(IConnectionComposable $connection, $number) {
if (is_numeric($number)) {
return (int) $number;
}
if ($number !== 'nil') {
Helpers::onCommunicationException(new ProtocolException(
$connection, "Cannot parse '$number' as numeric response"
));
}
return null;
}
}