Skip to content

Commit d6f783e

Browse files
committed
Merge pull request #24 from jadjoubran/analysis-zGb0gq
Applied fixes from StyleCI
2 parents d45bbac + 6a6445e commit d6f783e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/Console/Commands/AngularFeature.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ public function handle()
3838
$studly_name = studly_case($name);
3939

4040
$html = file_get_contents(__DIR__.'/Stubs/AngularFeature/feature.html.stub');
41-
$js = file_get_contents(__DIR__.'/Stubs/AngularFeature/feature.js.stub');
41+
$js = file_get_contents(__DIR__.'/Stubs/AngularFeature/feature.js.stub');
4242
$less = file_get_contents(__DIR__.'/Stubs/AngularFeature/feature.less.stub');
4343

4444
$html = str_replace('{{StudlyName}}', $studly_name, $html);
4545
$js = str_replace('{{StudlyName}}', $studly_name, $js);
4646

47-
$folder = __DIR__ . '/../../../angular/app/' . $name;
48-
if (is_dir($folder)){
47+
$folder = __DIR__.'/../../../angular/app/'.$name;
48+
if (is_dir($folder)) {
4949
$this->info('Folder already exists');
5050

5151
return false;

0 commit comments

Comments
 (0)