File "PredisClusterConnection.php"

Full Path: /home/fundopuh/trader.fxex.org/vendor/laravel/framework/src/Illuminate/Testing/PredisClusterConnection.php
File size: 425 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Illuminate\Redis\Connections;

use Predis\Command\ServerFlushDatabase;

class PredisClusterConnection extends PredisConnection
{
    /**
     * Flush the selected Redis database on all cluster nodes.
     *
     * @return void
     */
    public function flushdb()
    {
        $this->client->executeCommandOnNodes(
            tap(new ServerFlushDatabase)->setArguments(func_get_args())
        );
    }
}