Skip to content

Commit

Permalink
Remove PHPUnit warning about abstract class
Browse files Browse the repository at this point in the history
  • Loading branch information
trompette committed Mar 25, 2024
1 parent eccc670 commit fccd315
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
use PHPUnit\Framework\TestCase;
use Trompette\FeatureToggles\DBAL\SchemaMigrator;

abstract class ConfigurationRepositoryTest extends TestCase
abstract class ConfigurationRepositoryTestCase extends TestCase
{
protected Connection $connection;
protected SchemaMigrator $repository;
Expand Down
2 changes: 1 addition & 1 deletion tests/DBAL/OnOffStrategyConfigurationRepositoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
/**
* @property OnOffStrategyConfigurationRepository $repository
*/
class OnOffStrategyConfigurationRepositoryTest extends ConfigurationRepositoryTest
class OnOffStrategyConfigurationRepositoryTest extends ConfigurationRepositoryTestCase
{
protected function createRepository(): void
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
/**
* @property PercentageStrategyConfigurationRepository $repository
*/
class PercentageStrategyConfigurationRepositoryTest extends ConfigurationRepositoryTest
class PercentageStrategyConfigurationRepositoryTest extends ConfigurationRepositoryTestCase
{
protected function createRepository(): void
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
/**
* @property WhitelistStrategyConfigurationRepository $repository
*/
class WhitelistStrategyConfigurationRepositoryTest extends ConfigurationRepositoryTest
class WhitelistStrategyConfigurationRepositoryTest extends ConfigurationRepositoryTestCase
{
protected function createRepository(): void
{
Expand Down

0 comments on commit fccd315

Please sign in to comment.