Abstract lnApp classes

This commit is contained in:
Deon George
2012-07-12 16:38:09 +10:00
parent 0a211b4677
commit 8100fa2540
11 changed files with 11 additions and 11 deletions

View File

@@ -9,7 +9,7 @@
* @copyright (c) 2010 Deon George
* @license http://dev.leenooks.net/license.html
*/
class lnApp_Random {
abstract class lnApp_Random {
public static function char($num=NULL) {
return substr(md5(rand()),0,is_null($num) ? rand(6,10) : $num-1);
}