Commands
Commands grouped by types:
Methods to operate with commands
<?php /** * Add command * * @param string $name Command name * @param string $className Name of class */ public static function addCommand($name, $className) /** * Remove command * * @param string $name Command name */ public static function removeCommand($name) /** * Get Rediska Command instance * * @throws Rediska_Exception * @param string $name Command name * @param array $arguments Command arguments * @return Rediska_Command_Abstract */ public function getCommand($name, $arguments) ?>