CommandInterface
last analyzed

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 14
c 0
b 0
f 0
1
<?php
2
3
namespace Dazzle\Redis\Command;
4
5
interface CommandInterface extends
6
    Api\ApiChannelInterface,
7
    Api\ApiClusterInterface,
8
    Api\ApiConnInterface,
9
    Api\ApiCoreInterface,
10
    Api\ApiGeospatialInterface,
11
    Api\ApiHyperLogInterface,
12
    Api\ApiKeyValInterface,
13
    Api\ApiListInterface,
14
    Api\ApiSetInterface,
15
    Api\ApiSetHashInterface,
16
    Api\ApiSetSortedInterface,
17
    Api\ApiTransactionInterface
18
{}
0 ignored issues
show
Coding Style introduced by
Opening interface brace must be on a line by itself
Loading history...
19