Skip to content
This repository has been archived by the owner on Nov 11, 2022. It is now read-only.

Commit

Permalink
fix service provider naming
Browse files Browse the repository at this point in the history
  • Loading branch information
ousid committed Feb 5, 2022
1 parent 822db89 commit 8fe72ec
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"extra": {
"laravel": {
"providers": [
"Coderflex\\LaraCommand\\LaraCommandsServiceProvider"
"Coderflex\\LaraCommand\\LaraCommandServiceProvider"
],
"aliases": {
"LaraCommand": "Coderflex\\LaraCommand\\Facades\\LaraCommand"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use Spatie\LaravelPackageTools\Package;
use Spatie\LaravelPackageTools\PackageServiceProvider;

class LaraCommandsServiceProvider extends PackageServiceProvider
class LaraCommandServiceProvider extends PackageServiceProvider
{
public function configurePackage(Package $package): void
{
Expand Down
4 changes: 2 additions & 2 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Coderflex\LaraCommand\Tests;

use Coderflex\LaraCommand\LaraCommandsServiceProvider;
use Coderflex\LaraCommand\LaraCommandServiceProvider;
use Illuminate\Database\Eloquent\Factories\Factory;
use Orchestra\Testbench\TestCase as Orchestra;

Expand All @@ -20,7 +20,7 @@ protected function setUp(): void
protected function getPackageProviders($app)
{
return [
LaraCommandsServiceProvider::class,
LaraCommandServiceProvider::class,
];
}

Expand Down

0 comments on commit 8fe72ec

Please sign in to comment.