Commit 0477f484 authored by Nicolas Widart's avatar Nicolas Widart

Squashed 'Modules/User/' changes from 9b064da..a0751eb

a0751eb remove view namespace definitions from start file
58ec072 Adding start.php to files array
9df8afb Adapting to new method signature again
32adf82 Adapting to new method signature again

git-subtree-dir: Modules/User
git-subtree-split: a0751eb8862ce95a2a8b5cb4fa184feec1a20418
parent a10a0c1b
......@@ -7,5 +7,8 @@
"providers": [
"Modules\\User\\Providers\\UserServiceProvider",
"Modules\\User\\Providers\\RouteServiceProvider"
],
"files": [
"start.php"
]
}
<?php
/*
|--------------------------------------------------------------------------
| Register The Module Namespaces
|--------------------------------------------------------------------------
|
| Here is you can register the namespace for this module.
| You may to edit this namespace if you want.
|
*/
View::addNamespace('user', __DIR__ . '/Resources/views/');
Lang::addNamespace('user', __DIR__ . '/Resources/lang/');
Config::addNamespace('user', __DIR__ . '/Config/');
require __DIR__ . '/composers.php';
require __DIR__ . '/listeners.php';
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment