ma-si/elastic-developer-toolbar

View on GitHub
src/Module.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

/**
 * Elastic Developer Toolbar (http://mateuszsitek.com/projects/elastic-developer-toolbar)
 *
 * @copyright Copyright (c) 2017-2018 DIGITAL WOLVES LTD (http://digitalwolves.ltd) All rights reserved.
 * @license   http://opensource.org/licenses/BSD-3-Clause BSD-3-Clause
 */

namespace Aist\Developer\Toolbar\Elastic;

use Zend\ModuleManager\Feature\ConfigProviderInterface;

class Module implements ConfigProviderInterface
{
    /**
     * {@inheritDoc}
     */
    public function getConfig()
    {
        return include __DIR__ . '/../config/module.config.php';
    }
}