added abstract basestructure class above all callback structures

This commit is contained in:
kremsy
2017-03-22 18:31:53 +01:00
parent a1373b4e7c
commit 4ab3bf7650
3 changed files with 30 additions and 5 deletions

View File

@ -2,6 +2,7 @@
namespace ManiaControl\Callbacks\Structures\ManiaPlanet;
use ManiaControl\Callbacks\Structures\BaseStructure;
use ManiaControl\ManiaControl;
/**
@ -11,15 +12,12 @@ use ManiaControl\ManiaControl;
* @copyright 2014-2017 ManiaControl Team
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
*/
class CallbacksListStructure {
class CallbacksListStructure extends BaseStructure {
/** @var string $responseId */
private $responseId;
/** @var array $callbacks */
private $callbacks;
/** @var ManiaControl $maniaControl */
private $maniaControl;
/**
* Construct a new Armor Empty Structure
*