Skip to content

Commit

Permalink
Fix code styling
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell authored and github-actions[bot] committed Feb 16, 2023
1 parent 7095aa1 commit df28beb
Showing 1 changed file with 26 additions and 26 deletions.
52 changes: 26 additions & 26 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,36 +8,36 @@

abstract class TestCase extends OrchestraTestCase
{
/**
* Define database migrations.
*
* @return void
*/
protected function defineDatabaseMigrations()
{
$this->loadMigrationsFrom(__DIR__.'/../database/migrations');
}

/**
* Get package providers.
* Define database migrations.
*
* @param \Illuminate\Foundation\Application $app
* @return array<int, class-string<\Illuminate\Support\ServiceProvider>>
* @return void
*/
protected function getPackageProviders($app)
protected function defineDatabaseMigrations()
{
return [
PennantServiceProvider::class,
];
$this->loadMigrationsFrom(__DIR__.'/../database/migrations');
}

/**
* Create an instance of the manager.
*
* @return \Laravel\Pennant\FeatureManager
*/
protected function createManager()
{
return new FeatureManager($this->app);
}
/**
* Get package providers.
*
* @param \Illuminate\Foundation\Application $app
* @return array<int, class-string<\Illuminate\Support\ServiceProvider>>
*/
protected function getPackageProviders($app)
{
return [
PennantServiceProvider::class,
];
}

/**
* Create an instance of the manager.
*
* @return \Laravel\Pennant\FeatureManager
*/
protected function createManager()
{
return new FeatureManager($this->app);
}
}

0 comments on commit df28beb

Please sign in to comment.