Ready to implement sendMessage method

This commit is contained in:
Pierre
2017-06-23 19:00:40 +02:00
parent be91602277
commit 03392f65a9
4 changed files with 98 additions and 3 deletions

View File

@ -1,6 +1,6 @@
<?php
/**
* API specific methods
* Strings methods
*
* @author Pierre HUBERT
*/
@ -22,4 +22,4 @@ function random_str($length, $keyspace = '0123456789abcdefghijklmnopqrstuvwxyzAB
$str .= $keyspace[random_int(0, $max)];
}
return $str;
}
}