diff --git a/tests/phar/data/src/StringExample.php b/tests/phar/data/src/StringExample.php index 845ba1a18..fa03adccf 100644 --- a/tests/phar/data/src/StringExample.php +++ b/tests/phar/data/src/StringExample.php @@ -9,6 +9,18 @@ class IPv4Address implements Stringable { private string $oct3; private string $oct4; + /** + * Elementum semper nullam primis tempus quisque tempor. + * + * @example + * $redis->pipeline() + * ->select(1) + * ->del('newkey') + * ->select(0) + * ->del('newkey') + * ->mset(['source1' => 'value1', 'exists' => 'old_value']) + * ->exec(); + */ public function __construct(string $oct1, string $oct2, string $oct3, string $oct4) { $this->oct1 = $oct1; $this->oct2 = $oct2; @@ -16,6 +28,12 @@ public function __construct(string $oct1, string $oct2, string $oct3, string $oc $this->oct4 = $oct4; } + /** + * Elementum semper nullam primis tempus quisque tempor. + * + * @example $redis->copy('source1', 'newkey'); + * @example $redis->copy('source1', 'newkey', ['db' => 1]); + */ public function __toString(): string { return "$this->oct1.$this->oct2.$this->oct3.$this->oct4"; }