Total Complexity | 1 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | final class PopCommand extends Command |
||
8 | { |
||
9 | private $command = 'POP'; |
||
10 | private $parameters = []; |
||
11 | |||
12 | /** |
||
13 | * pops a text from a given object |
||
14 | * PopCommand constructor. |
||
15 | * @param string $collection |
||
16 | * @param string $bucket |
||
17 | * @param string $object |
||
18 | * @param string $text |
||
19 | */ |
||
20 | public function __construct(string $collection, string $bucket, string $object, string $text) |
||
30 | } |
||
31 | } |