Skip to content

Commit 3b4febb

Browse files
committed
Merge branch 'develop'
2 parents 8a6914c + 5fe4437 commit 3b4febb

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

src/Console/Commands/HelperMakeCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class HelperMakeCommand extends GeneratorCommand
3434
*/
3535
protected function getStub()
3636
{
37-
return __DIR__ . '/stubs/helper.stub';
37+
return __DIR__.'/stubs/helper.stub';
3838
}
3939

4040
/**
@@ -45,6 +45,6 @@ protected function getStub()
4545
*/
4646
protected function getDefaultNamespace($rootNamespace)
4747
{
48-
return $rootNamespace . '\\' . config('helpers.directory', 'Helpers');
48+
return $rootNamespace.'\\'.config('helpers.directory', 'Helpers');
4949
}
5050
}

src/ServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
class ServiceProvider extends \Illuminate\Support\ServiceProvider
88
{
9-
const CONFIG_PATH = __DIR__ . '/../config/helpers.php';
9+
const CONFIG_PATH = __DIR__.'/../config/helpers.php';
1010

1111
/**
1212
* Bootstrap the application events.
@@ -39,7 +39,7 @@ public function register()
3939
);
4040

4141
$files = glob(
42-
app_path(config('helpers.directory', 'Helpers') . '/*.php')
42+
app_path(config('helpers.directory', 'Helpers').'/*.php')
4343
);
4444

4545
foreach ($files as $file) {

tests/HelpersTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
namespace Kristories\Helpers\Tests;
44

5-
use Kristories\Helpers\ServiceProvider;
65
use Orchestra\Testbench\TestCase;
76

87
class HelpersTest extends TestCase

0 commit comments

Comments
 (0)