for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* YAWIK
* Auth Module Bootstrap
*
* @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de)
* @license MIT
*/
namespace Cv;
use Zend\Mvc\MvcEvent;
use Auth\View\InjectLoginInfoListener;
use Auth\Listener\TokenListener;
* Bootstrap class of the Core module
class Module
{
* Loads module specific configuration.
* @return array
public function getConfig()
return include __DIR__ . '/config/module.config.php';
}
* Loads module specific autoloader configuration.
public function getAutoloaderConfig()
return array(
'Zend\Loader\StandardAutoloader' => array(
'namespaces' => array(
__NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__,
),
);
public function onBootstrap(MvcEvent $e)
$e
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.