Adhere PHP-CS..

This commit is contained in:
Philipp
2023-01-16 22:25:26 +01:00
parent f609e38600
commit 293c121c48
3 changed files with 14 additions and 14 deletions

View File

@@ -53,26 +53,26 @@ class InstanceManagerTest extends MockedTest
public function dataTests(): array
{
return [
'only_a' => [
'only_a' => [
'aString' => 'test',
],
'a_b' => [
'a_b' => [
'aString' => 'test',
'cBool' => false,
'cBool' => false,
'bString' => 'test23',
],
'a_c' => [
'a_c' => [
'aString' => 'test',
'cBool' => false,
'bString' => null,
],
'a_b_c' => [
'a_b_c' => [
'aString' => 'test',
'cBool' => false,
'bString' => 'test23',
],
'null' => [],
'null' => [],
];
}