duoshuo/php-cassandra

View on GitHub
src/Response/Ready.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
namespace Cassandra\Response;
use Cassandra\Protocol\Frame;

class Ready extends Response {
    public function getData(){
        /**
         * Indicates that the server is ready to process queries. This message will be
         * sent by the server either after a STARTUP message if no authentication is
         * required, or after a successful CREDENTIALS message.
         */
        return null;
    }
}