Skip to content
This repository was archived by the owner on Jan 21, 2020. It is now read-only.
Prev Previous commit
Next Next commit
Remove getAutoloaderConfig() implementation
- It's completely unnecessary, as Composer manages this module.
  • Loading branch information
weierophinney committed Jul 6, 2016
commit 75c1e2d9aed6ee75bbf2aede7b0f865e54f19251
17 changes: 0 additions & 17 deletions Module.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

namespace ZF\ApiProblem;

use Zend\Loader\StandardAutoloader;
use Zend\Mvc\ResponseSender\SendResponseEvent;
use Zend\Mvc\MvcEvent;
use ZF\ApiProblem\Listener\SendApiProblemResponseListener;
Expand All @@ -16,22 +15,6 @@
*/
class Module
{
/**
* Retrieve autoloader configuration
*
* @return array
*/
public function getAutoloaderConfig()
{
return [
StandardAutoloader::class => [
'namespaces' => [
__NAMESPACE__ => __DIR__ . '/src/',
]
]
];
}

/**
* Retrieve module configuration
*
Expand Down