@@ -35,7 +35,7 @@ interface Session
3535 *
3636 * @return Rows execution result
3737 */
38- public function Rows execute (Statement $ statement , ExecutionOptions $ options = null );
38+ public function execute (Statement $ statement , ExecutionOptions $ options = null );
3939
4040 /**
4141 * Executes a given statement and returns a future result.
@@ -48,7 +48,7 @@ public function Rows execute(Statement $statement, ExecutionOptions $options = n
4848 *
4949 * @return Future future result
5050 */
51- public function Future executeAsync (Statement $ statement , ExecutionOptions $ options = null );
51+ public function executeAsync (Statement $ statement , ExecutionOptions $ options = null );
5252
5353 /**
5454 * Creates a prepared statement from a given CQL string.
@@ -63,7 +63,7 @@ public function Future executeAsync(Statement $statement, ExecutionOptions $opti
6363 *
6464 * @return PreparedStatement prepared statement
6565 */
66- public function PreparedStatement prepare ($ cql , ExecutionOptions $ options = null );
66+ public function prepare ($ cql , ExecutionOptions $ options = null );
6767
6868 /**
6969 * Asynchronously prepares a statement and returns a future prepared statement.
@@ -75,19 +75,20 @@ public function PreparedStatement prepare($cql, ExecutionOptions $options = null
7575 *
7676 * @return Future statement
7777 */
78- public function Future prepareAsync ($ cql , ExecutionOptions $ options = null );
78+ public function prepareAsync ($ cql , ExecutionOptions $ options = null );
7979
8080 /**
8181 * Closes current session and all of its connections.
8282 *
8383 * @param float|null $timeout Timeout to wait for closure in seconds
84+ * @return void
8485 */
85- public function void close ($ timeout = null );
86+ public function close ($ timeout = null );
8687
8788 /**
8889 * Asynchronously closes current session once all pending requests have finished.
8990 *
9091 * @return Future future
9192 */
92- public function Future closeAsync ();
93+ public function closeAsync ();
9394}
0 commit comments