# travelpayouts/trunk/src/modules/help/HelpModule.php

Travelpayouts, version trunk. 26 lines.

- Page: https://pluginprobe.com/plugins/travelpayouts/trunk/code/src/modules/help/HelpModule.php
- Raw: https://pluginprobe.com/plugins/travelpayouts/trunk/raw/src/modules/help/HelpModule.php
- Modified: 2026-08-04T10:16:46+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/travelpayouts/trunk/code/src/modules/help/HelpModule.php#L10-L20`.

```php
<?php

/**
 * Created by: Andrey Polyakov (andrey@polyakov.im)
 */

namespace Travelpayouts\modules\help;
use Travelpayouts\Vendor\DI\Annotation\Inject;

class HelpModule extends \Travelpayouts\components\module\ModuleRedux
{
    /**
     * @Inject
     * @var HelpSection
     */
    public $section;

    /**
     * @inheritDoc
     */
    public function registerSection()
    {
        $this->section->register();
    }
}

```
