Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
renamed Entities to Entity and Repositories to Repository
  • Loading branch information
jakoch committed Sep 23, 2012
1 parent e4d1ad9 commit 2868e86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Installation/Application/Helper.php
Expand Up @@ -171,14 +171,14 @@ public static function getModelPathsForAllModules()

foreach ($dirs as $key => $dir_path) {
// Entity Path
$entity_path = $dir_path . '/Model/Entities/';
$entity_path = $dir_path . '/Model/Entity/';

if (is_dir($entity_path)) {
$model_dirs[] = $entity_path;
}

// Repository Path
$repos_path = $dir_path . '/Model/Repositories/';
$repos_path = $dir_path . '/Model/Repository/';

if (is_dir($repos_path)) {
$model_dirs[] = $repos_path;
Expand Down

0 comments on commit 2868e86

Please sign in to comment.