Skip to content

Commit

Permalink
Add all generator paths.
Browse files Browse the repository at this point in the history
Signed-off-by: crynobone <crynobone@gmail.com>
  • Loading branch information
crynobone committed Aug 14, 2014
1 parent edd0e57 commit fa19c8e
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions src/Testbench/Traits/ApplicationTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -133,11 +133,17 @@ protected function getApplicationPaths()

return [
'app' => "{$basePath}/app",
'config' => "{$basePath}/app/config",
'controllers' => "{$basePath}/app/controllers",
'public' => "{$basePath}/public",
'base' => $basePath,
'public' => "{$basePath}/public",
'storage' => "{$basePath}/app/storage",

'commands' => "{$basePath}/app/console",
'config' => "{$basePath}/app/config",
'controllers' => "{$basePath}/app/http/controllers",
'database' => "{$basePath}/app/database",
'filters' => "{$basePath}/app/http/filters",
'lang' => "{$basePath}/app/lang",
'requests' => "{$basePath}/app/http/requests",
];
}

Expand Down

0 comments on commit fa19c8e

Please sign in to comment.