PluginProbe
Travelpayouts / trunk
Travelpayouts vtrunk
1.1.11 1.1.12 1.1.13 1.1.14 1.1.15 1.1.16 1.1.17 1.1.18 1.1.19 1.1.2 1.1.20 1.1.21 1.1.22 1.1.23 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.1.9 1.2.0 1.2.1 1.2.2 1.2.3 All 56 releases
travelpayouts / src / modules / help / HelpModule.php

HelpModule.php in Travelpayouts trunk, at src/modules/help/HelpModule.php

26 lines 426 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Created by: Andrey Polyakov (andrey@polyakov.im)
5 */
6
7 namespace Travelpayouts\modules\help;
8 use Travelpayouts\Vendor\DI\Annotation\Inject;
9
10 class HelpModule extends \Travelpayouts\components\module\ModuleRedux
11 {
12 /**
13 * @Inject
14 * @var HelpSection
15 */
16 public $section;
17
18 /**
19 * @inheritDoc
20 */
21 public function registerSection()
22 {
23 $this->section->register();
24 }
25 }
26