* @author Wojciech Król * @copyright 2017 Paweł Klockiewicz, Wojciech Król * @license https://batflat.org/license * @link https://batflat.org */ namespace Inc\Core; /** * Admin class for administration panel */ abstract class AdminModule extends BaseModule { /** * Module navigation * * @return array */ public function navigation() { return []; } }