| Total Complexity | 1 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | final class FlushBucketCommand extends Command |
||
| 8 | { |
||
| 9 | private $command = 'FLUSHB'; |
||
| 10 | private $parameters = []; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * Flushes a given bucket in a collection |
||
| 14 | * FlushBucketCommand constructor. |
||
| 15 | * @param string $collection |
||
| 16 | * @param string $bucket |
||
| 17 | */ |
||
| 18 | public function __construct(string $collection, string $bucket) |
||
| 26 | } |
||
| 27 | } |