Skip to content

Commit

Permalink
Merge pull request #5 from andrey-helldar/analysis-64kRQo
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
Andrey Helldar authored Aug 25, 2021
2 parents 6f452db + 7309bd8 commit f935b84
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions tests/Observers/ObserverTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,6 @@ class ObserverTest extends TestCase

protected $model = RequestPayment::class;

protected function getPackageProviders($app): array
{
return [
ServiceProvider::class,
ObserverServiceProvider::class,
];
}

public function testCreate()
{
$this->assertSame(0, DB::table('payments')->count());
Expand Down Expand Up @@ -107,6 +99,14 @@ public function testUpdate()
);
}

protected function getPackageProviders($app): array
{
return [
ServiceProvider::class,
ObserverServiceProvider::class,
];
}

protected function payment(): RequestPayment
{
return Payment::create()->refresh();
Expand Down

0 comments on commit f935b84

Please sign in to comment.