huge fml update

This commit is contained in:
Steffen Schröder
2014-01-19 19:30:21 +01:00
parent 9654b26f2b
commit 771409b8eb
66 changed files with 2303 additions and 134 deletions

View File

@ -14,6 +14,17 @@ class AddBuddy implements Element {
protected $tagName = 'add_buddy';
protected $login = '';
/**
* Construct a new AddBuddy Element
*
* @param string $login (optional) Buddy Login
* @return \FML\ManiaCode\AddBuddy
*/
public static function create($login = null) {
$addBuddy = new AddBuddy($login);
return $addBuddy;
}
/**
* Construct a new AddBuddy Element
*