Skip to content

Commit

Permalink
Add typehint to S3StorageTest class for Symfony 7 compatibility (#7397)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-schranz committed May 6, 2024
1 parent 02535d3 commit 3080cc3
Showing 1 changed file with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,15 @@

class S3StorageTest extends SuluTestCase
{
/**
* @var string
*/
protected static $class = S3Kernel::class;
protected function setUp(): void
{
static::$class = S3Kernel::class;
}

protected static function getKernelClass(): string
protected function tearDown(): void
{
return S3Kernel::class;
static::$class = null;
parent::tearDown();
}

public function testSave(): void
Expand Down

0 comments on commit 3080cc3

Please sign in to comment.