diff --git a/checkers/php-redis.php b/checkers/php-redis.php index df9d0ba..36ee6db 100644 --- a/checkers/php-redis.php +++ b/checkers/php-redis.php @@ -1,15 +1,12 @@ Module name: phpredis'); -echo ('
-This PHP script check a basic feauteres of the phpredis extension: -=> Create a Redis client -=> Connect to a Redis server(Connection data in the script itself) -=> Stores a key-value pair (foo = bar) -=> Retrieves and displays the stored value -
'); +$checker = new BaseModule( + "phpredis", + "phpredis is a native PHP extension written in C that provides a fast and efficient interface to communicate with a Redis key-value store. It supports most Redis features..", + "This PHP script check a basic feauteres of the phpredis extension: => Create a Redis client => Connect to a Redis server(Connection data in the script itself) => Stores a key-value pair (foo = bar) => Retrieves and displays the stored value"); + +$checker->printInfo(); $redis = new Redis();