File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ class HelperMakeCommand extends GeneratorCommand
34
34
*/
35
35
protected function getStub ()
36
36
{
37
- return __DIR__ . '/stubs/helper.stub ' ;
37
+ return __DIR__ . '/stubs/helper.stub ' ;
38
38
}
39
39
40
40
/**
@@ -45,6 +45,6 @@ protected function getStub()
45
45
*/
46
46
protected function getDefaultNamespace ($ rootNamespace )
47
47
{
48
- return $ rootNamespace . '\\' . config ('helpers.directory ' , 'Helpers ' );
48
+ return $ rootNamespace. '\\' . config ('helpers.directory ' , 'Helpers ' );
49
49
}
50
50
}
Original file line number Diff line number Diff line change 6
6
7
7
class ServiceProvider extends \Illuminate \Support \ServiceProvider
8
8
{
9
- const CONFIG_PATH = __DIR__ . '/../config/helpers.php ' ;
9
+ const CONFIG_PATH = __DIR__ . '/../config/helpers.php ' ;
10
10
11
11
/**
12
12
* Bootstrap the application events.
@@ -39,7 +39,7 @@ public function register()
39
39
);
40
40
41
41
$ files = glob (
42
- app_path (config ('helpers.directory ' , 'Helpers ' ) . '/*.php ' )
42
+ app_path (config ('helpers.directory ' , 'Helpers ' ). '/*.php ' )
43
43
);
44
44
45
45
foreach ($ files as $ file ) {
Original file line number Diff line number Diff line change 2
2
3
3
namespace Kristories \Helpers \Tests ;
4
4
5
- use Kristories \Helpers \ServiceProvider ;
6
5
use Orchestra \Testbench \TestCase ;
7
6
8
7
class HelpersTest extends TestCase
You can’t perform that action at this time.
0 commit comments