Skip to content
This repository has been archived by the owner on Apr 16, 2024. It is now read-only.

Commit

Permalink
add new line above namespace for PSR compliance
Browse files Browse the repository at this point in the history
  • Loading branch information
Mulkave committed Nov 24, 2018
1 parent 921ab64 commit 5ec3749
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Generators/stubs/controller.plain.stub
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

namespace {{namespace}};

use Illuminate\Http\Request;
Expand Down
1 change: 1 addition & 0 deletions src/Generators/stubs/controller.stub
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

namespace {{namespace}};

use Illuminate\Http\Request;
Expand Down
1 change: 1 addition & 0 deletions src/Generators/stubs/feature-test.stub
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

namespace {{namespace}};

use Tests\TestCase;
Expand Down
1 change: 1 addition & 0 deletions src/Generators/stubs/feature.stub
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

namespace {{namespace}};

use {{foundation_namespace}}\Feature;
Expand Down
1 change: 1 addition & 0 deletions src/Generators/stubs/job-test.stub
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

namespace {{namespace}};

use {{job_namespace}};
Expand Down
1 change: 1 addition & 0 deletions src/Generators/stubs/job.stub
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

namespace {{namespace}};

use {{foundation_namespace}}\Job;
Expand Down
1 change: 1 addition & 0 deletions src/Generators/stubs/operation-test.stub
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

namespace {{namespace}};

use Tests\TestCase;
Expand Down
1 change: 1 addition & 0 deletions src/Generators/stubs/queueable-job.stub
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

namespace {{namespace}};

use {{foundation_namespace}}\QueueableJob;
Expand Down
1 change: 1 addition & 0 deletions src/Generators/stubs/queueable-operation.stub
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

namespace {{namespace}};

use {{foundation_namespace}}\QueueableOperation;
Expand Down
1 change: 1 addition & 0 deletions src/Generators/stubs/routeserviceprovider.stub
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

namespace {{namespace}};

use Illuminate\Routing\Router;
Expand Down
1 change: 1 addition & 0 deletions src/Generators/stubs/serviceprovider.stub
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

namespace {{namespace}};

use View;
Expand Down

0 comments on commit 5ec3749

Please sign in to comment.