Sha256: 57e14e6f62ef549efc65c1899d84a6c9371e9d6f6a3ec1b4888c3a0d3faa4826

Contents?: true

Size: 346 Bytes

Versions: 7

Compression:

Stored size: 346 Bytes

Contents

<?php

namespace Predis\Protocol\Text;

use Predis\ResponseError;
use Predis\Protocol\IResponseHandler;
use Predis\Network\IConnectionComposable;

class ResponseErrorSilentHandler implements IResponseHandler {
    public function handle(IConnectionComposable $connection, $errorMessage) {
        return new ResponseError($errorMessage);
    }
}

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
appstats-0.25.1 doc/benchmarks/Predis/Protocol/Text/ResponseErrorSilentHandler.php
appstats-0.25.0 doc/benchmarks/Predis/Protocol/Text/ResponseErrorSilentHandler.php
appstats-0.24.0 doc/benchmarks/Predis/Protocol/Text/ResponseErrorSilentHandler.php
appstats-0.23.5 doc/benchmarks/Predis/Protocol/Text/ResponseErrorSilentHandler.php
appstats-0.23.4 doc/benchmarks/Predis/Protocol/Text/ResponseErrorSilentHandler.php
appstats-0.23.3 doc/benchmarks/Predis/Protocol/Text/ResponseErrorSilentHandler.php
appstats-0.23.2 doc/benchmarks/Predis/Protocol/Text/ResponseErrorSilentHandler.php