fraserreed/memcached-manager

View on GitHub
src/MemcachedManager/Connection/IConnection.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace MemcachedManager\Connection;


interface IConnection
{
    public function __construct( $host, $port );

    public function execute( $command );
}