Ejemplo n.º 1
0
 /**
  * a PHP version of the state-number server. Send me an integer and i'll sell you a state
  * @param integer $s
  * @return string
  */
 static function findstate($s)
 {
     return inner_findstate($s);
 }
Ejemplo n.º 2
0
 /**
  * A PHP version of the state-number server. Send me an integer and i'll sell you a state.
  * Used to test wrapping of PHP methods into xmlrpc methods.
  *
  * @param integer $num
  * @return string
  * @throws Exception
  */
 public static function findState($num)
 {
     return inner_findstate($num);
 }