New SidebarMenuManager Version

This commit is contained in:
Jocy
2017-05-19 18:36:41 +02:00
parent 6193787ee5
commit e3a365f187
8 changed files with 228 additions and 179 deletions

View File

@ -0,0 +1,24 @@
<?php
namespace ManiaControl\Manialinks;
use ManiaControl\Callbacks\Listening;
class SidebarMenuEntry extends Listening {
private $id;
/**
* @return mixed
*/
public function getId() {
return $this->id;
}
/**
* @param mixed $id
*/
public function setId($id) {
$this->id = $id;
}
}