mirror of
https://github.com/flarum/core.git
synced 2025-08-10 10:24:46 +02:00
Add @inheritDoc to all setUp and tearDown methods
This commit is contained in:
@@ -19,6 +19,9 @@ class DatabaseSettingsRepositoryTest extends TestCase
|
||||
private $connection;
|
||||
private $repository;
|
||||
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
protected function setUp(): void
|
||||
{
|
||||
$this->connection = m::mock(ConnectionInterface::class);
|
||||
|
@@ -19,6 +19,9 @@ class MemoryCacheSettingsRepositoryTest extends TestCase
|
||||
private $baseRepository;
|
||||
private $repository;
|
||||
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
protected function setUp(): void
|
||||
{
|
||||
$this->baseRepository = m::mock(SettingsRepositoryInterface::class);
|
||||
|
Reference in New Issue
Block a user