/**
* Increment the count for a table
*
* @param string $table Name of the target table
*
* @return int The new count value
*/
public static function upCount(string
$table): int
{ return self::
setCount($table, self::
getCount($table) + 1
);
} /**
* Decrement the count for a table
*
* @param string $table Name of the target table
*
* @return int The new count value
*/
public static function downCount(string
$table): int
{