1 | <?php |
||
2 | /** |
||
3 | * YAWIK |
||
4 | * Auth Module Bootstrap |
||
5 | * |
||
6 | * @copyright (c) 2013 - 2016 Cross Solution (http://cross-solution.de) |
||
7 | * @license MIT |
||
8 | */ |
||
9 | |||
10 | namespace Cv; |
||
11 | |||
12 | use Core\ModuleManager\Feature\VersionProviderInterface; |
||
13 | use Core\ModuleManager\Feature\VersionProviderTrait; |
||
14 | use Laminas\Mvc\MvcEvent; |
||
15 | |||
16 | /** |
||
17 | * Bootstrap class of the Core module |
||
18 | * |
||
19 | */ |
||
20 | class Module implements VersionProviderInterface |
||
21 | { |
||
22 | use VersionProviderTrait; |
||
23 | |||
24 | const VERSION = \Core\Module::VERSION; |
||
25 | |||
26 | /** |
||
27 | * Loads module specific configuration. |
||
28 | * |
||
29 | * @return array |
||
30 | */ |
||
31 | 5 | public function getConfig() |
|
32 | { |
||
33 | 5 | return include __DIR__ . '/../config/module.config.php'; |
|
34 | } |
||
35 | |||
36 | public function onBootstrap(MvcEvent $e) |
||
0 ignored issues
–
show
|
|||
37 | { |
||
38 | } |
||
39 | } |
||
40 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.