mirror of
https://github.com/friendica/friendica
synced 2024-11-09 16:22:56 +00:00
Make PHP-CS happy
This commit is contained in:
parent
dd88d193b9
commit
072464119a
1 changed files with 2 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Test\src\Core\Config;
|
||||
|
||||
use Friendica\Core\Config\Capability\ISetConfigValuesTransactional;
|
||||
use Friendica\Core\Config\Model\Config;
|
||||
use Friendica\Core\Config\Model\TransactionalConfig;
|
||||
|
@ -36,7 +37,7 @@ class TransactionalConfigTest extends MockedTest
|
|||
|
||||
public function testInstance()
|
||||
{
|
||||
$config = new Config($this->configFileManager, new Cache());
|
||||
$config = new Config($this->configFileManager, new Cache());
|
||||
$transactionalConfig = new TransactionalConfig($config);
|
||||
|
||||
self::assertInstanceOf(ISetConfigValuesTransactional::class, $transactionalConfig);
|
||||
|
|
Loading…
Reference in a new issue