| Total Complexity | 1 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | final class PushCommand extends Command |
||
| 8 | { |
||
| 9 | private $command = 'PUSH'; |
||
| 10 | private $parameters = []; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * Push a text/object into an object/bucket respectively |
||
| 14 | * PushCommand 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 | } |