|
Ultima modificación |
Ver Log
|
Rev |
Autor |
Línea Nro. |
Línea |
1 |
www |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
/**
|
|
|
4 |
* @see https://github.com/laminas/laminas-mvc-skeleton for the canonical source repository
|
|
|
5 |
* @copyright https://github.com/laminas/laminas-mvc-skeleton/blob/master/COPYRIGHT.md
|
|
|
6 |
* @license https://github.com/laminas/laminas-mvc-skeleton/blob/master/LICENSE.md New BSD License
|
|
|
7 |
*/
|
|
|
8 |
|
|
|
9 |
declare(strict_types=1);
|
|
|
10 |
|
|
|
11 |
namespace Application;
|
|
|
12 |
|
|
|
13 |
class Module
|
|
|
14 |
{
|
|
|
15 |
public function getConfig() : array
|
|
|
16 |
{
|
|
|
17 |
return include __DIR__ . '/../config/module.config.php';
|
|
|
18 |
}
|
|
|
19 |
}
|