Skip to content

Commit

Permalink
Change struct of module
Browse files Browse the repository at this point in the history
  • Loading branch information
ftdebugger committed Oct 18, 2013
1 parent b39a4db commit e05eb4c
Show file tree
Hide file tree
Showing 9 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Module.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<?php

include __DIR__ . "/src/EnliteMonolog/Module.php";
File renamed without changes.
4 changes: 2 additions & 2 deletions src/EnliteMonolog/Module.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public function getAutoloaderConfig()
return array(
'Zend\Loader\StandardAutoloader' => array(
'namespaces' => array(
__NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__,
__NAMESPACE__ => __DIR__ . '/../../src/' . __NAMESPACE__,
),
)
);
Expand All @@ -33,6 +33,6 @@ public function getAutoloaderConfig()
*/
public function getConfig()
{
return include __DIR__ . "/config/module.config.php";
return include __DIR__ . "/../../config/module.config.php";
}
}

0 comments on commit e05eb4c

Please sign in to comment.