diff --git a/lib/lib.php b/lib/lib.php index 7eee58d..1e32a9c 100644 --- a/lib/lib.php +++ b/lib/lib.php @@ -1,20 +1,56 @@ PLIB object? -//or mask all paths using api -abstract class lib_php extends lib{ - protected static function php_autoload(){} //autload magic? require_once lib\autoload.inc -> should do the trick -> do that in lib -} +/** + * php lib Class provided by System to provide php libs. + * @todo better abstraction model + */ +abstract class lib_php extends lib{ + /** + * include the php files to be used + * + * @return null Returns null + */ + protected static function php_autoload(){} +} \ No newline at end of file