mirror of
https://github.com/predis/predis.git
synced 2026-08-27 03:29:53 +00:00
b71c798f9b
This change aims to make class names shorter with less redundant fully qualified names. Merge!
22 lines
412 B
PHP
22 lines
412 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Predis package.
|
|
*
|
|
* (c) Daniele Alessandri <suppakilla@gmail.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Predis\Response;
|
|
|
|
/**
|
|
* Represents a complex reply object from Redis.
|
|
*
|
|
* @author Daniele Alessandri <suppakilla@gmail.com>
|
|
*/
|
|
interface ObjectInterface
|
|
{
|
|
}
|