Skip to content

Commit

Permalink
Fix provider name
Browse files Browse the repository at this point in the history
  • Loading branch information
mallardduck committed Sep 24, 2020
1 parent df1e46a commit 1881a75
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use Illuminate\Support\ServiceProvider;
use Illuminate\Validation\Factory;

class UnfilledValidatorServiceProvider extends ServiceProvider
class ExtendedValidatorServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
Expand Down
4 changes: 2 additions & 2 deletions tests/BaseTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace MallardDuck\ExtendedValidator\Tests;

use Illuminate\Validation\Factory;
use MallardDuck\ExtendedValidator\UnfilledValidatorServiceProvider;
use MallardDuck\ExtendedValidator\ExtendedValidatorServiceProvider;
use Orchestra\Testbench\TestCase;

abstract class BaseTest extends TestCase
Expand All @@ -17,7 +17,7 @@ public function setUp(): void
protected function getPackageProviders($app)
{
return [
UnfilledValidatorServiceProvider::class
ExtendedValidatorServiceProvider::class
];
}

Expand Down

0 comments on commit 1881a75

Please sign in to comment.