@@ -49,7 +49,7 @@ public function testRedisWithOnlyParameters()
4949 ]);
5050 $ predisClient ->set ('this_is_a_test_key ' , 'this-is-a-test-value ' );
5151
52- $ value = $ predis ->getItem ('this_is_a_test_key ' );
52+ $ value = $ predis ->get ('this_is_a_test_key ' );
5353 $ this ->assertEquals ('this-is-a-test-value ' , $ value );
5454
5555 $ predisClient ->del ('this_is_a_test_key ' );
@@ -75,7 +75,7 @@ public function testRedisWithParametersAndPrefix()
7575 ]);
7676 $ predisClient ->set ('test-redis-assertion.this_is_a_test_key ' , 'this-is-a-test-value ' );
7777
78- $ value = $ predis ->getItem ('this_is_a_test_key ' );
78+ $ value = $ predis ->get ('this_is_a_test_key ' );
7979 $ this ->assertEquals ('this-is-a-test-value ' , $ value );
8080
8181 $ predisClient ->del ('test-redis-assertion.this_is_a_test_key ' );
@@ -102,7 +102,7 @@ public function testRedisWithParametersPrefixAndSentinels()
102102 ]);
103103 $ predisClient ->set ('test-redis-assertion.this_is_a_test_key ' , 'this-is-a-test-value ' );
104104
105- $ value = $ predis ->getItem ('this_is_a_test_key ' );
105+ $ value = $ predis ->get ('this_is_a_test_key ' );
106106 $ this ->assertEquals ('this-is-a-test-value ' , $ value );
107107
108108 $ predisClient ->del ('test-redis-assertion.this_is_a_test_key ' );
@@ -232,7 +232,7 @@ public function testRedisWithSentinels()
232232 )
233233 ));
234234
235- $ predis ->getItem ('this_is_a_test_key ' );
235+ $ predis ->get ('this_is_a_test_key ' );
236236 }
237237
238238 public function testRedisWithSentinelsAndDistributedStrategy ()
@@ -248,7 +248,7 @@ public function testRedisWithSentinelsAndDistributedStrategy()
248248 )
249249 ));
250250
251- $ predis ->getItem ('this_is_a_test_key ' );
251+ $ predis ->get ('this_is_a_test_key ' );
252252 }
253253
254254 public function testRedisWithEmptyClusters ()
@@ -322,7 +322,7 @@ public function testRedisWithInvalidKeyHashtagInClusters()
322322 )
323323 ));
324324
325- $ predis ->getItem ('this_is_a_test_key ' );
325+ $ predis ->get ('this_is_a_test_key ' );
326326 }
327327
328328 public function testRedisWithInvalidBeginingKeyHashtagInClusters ()
@@ -342,7 +342,7 @@ public function testRedisWithInvalidBeginingKeyHashtagInClusters()
342342 )
343343 ));
344344
345- $ predis ->getItem ('this_is_a_test_key ' );
345+ $ predis ->get ('this_is_a_test_key ' );
346346 }
347347
348348 public function testRedisWithWrongTypeKeyHashtagInClusters ()
@@ -362,7 +362,7 @@ public function testRedisWithWrongTypeKeyHashtagInClusters()
362362 )
363363 ));
364364
365- $ predis ->getItem ('this_is_a_test_key ' );
365+ $ predis ->get ('this_is_a_test_key ' );
366366 }
367367
368368 public function testRedisWithWrongLengthKeyHashtagInClusters ()
@@ -382,7 +382,7 @@ public function testRedisWithWrongLengthKeyHashtagInClusters()
382382 )
383383 ));
384384
385- $ predis ->getItem ('this_is_a_test_key ' );
385+ $ predis ->get ('this_is_a_test_key ' );
386386 }
387387
388388 public function testRedisWithClusters ()
@@ -398,7 +398,7 @@ public function testRedisWithClusters()
398398 )
399399 ));
400400
401- $ predis ->getItem ('this_is_a_test_key ' );
401+ $ predis ->get ('this_is_a_test_key ' );
402402 }
403403
404404 public function testRedisWithoutCustomKeyHashtagClusters ()
@@ -413,7 +413,7 @@ public function testRedisWithoutCustomKeyHashtagClusters()
413413 )
414414 ));
415415
416- $ predis ->getItem ('this_is_a_test_key ' );
416+ $ predis ->get ('this_is_a_test_key ' );
417417 }
418418
419419 public function testRedisWithClustersKeyHashTags ()
@@ -432,7 +432,7 @@ public function testRedisWithClustersKeyHashTags()
432432 )
433433 ));
434434
435- $ predis ->getItem ('this_is_a_test_key ' );
435+ $ predis ->get ('this_is_a_test_key ' );
436436 }
437437
438438 public function testRedisWithClustersKeyHashTagsInvalid ()
@@ -451,7 +451,7 @@ public function testRedisWithClustersKeyHashTagsInvalid()
451451 )
452452 ));
453453
454- $ predis ->getItem ('this_is_a_test_key ' );
454+ $ predis ->get ('this_is_a_test_key ' );
455455 }
456456
457457 public function testRedisWithClustersKeyHashTagsInvalidHashTags ()
@@ -470,7 +470,7 @@ public function testRedisWithClustersKeyHashTagsInvalidHashTags()
470470 )
471471 ));
472472
473- $ predis ->getItem ('this_is_a_test_key ' );
473+ $ predis ->get ('this_is_a_test_key ' );
474474 }
475475
476476 public function testRedisWithClustersKeyHashTagsValid ()
@@ -486,7 +486,7 @@ public function testRedisWithClustersKeyHashTagsValid()
486486 )
487487 ));
488488
489- $ predis ->getItem ('this_is_a_test_key ' );
489+ $ predis ->get ('this_is_a_test_key ' );
490490 }
491491
492492 public function testRedisSSLWithClusterFails ()
0 commit comments