Skip to content

Commit c281ac2

Browse files
committed
fixed CS
1 parent b4ac4a3 commit c281ac2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Tests/Dumper/FileDumperTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public function testDump()
2626
$dumper = new ConcreteFileDumper();
2727
$dumper->dump($catalogue, array('path' => $tempDir));
2828

29-
$this->assertTrue(file_exists($tempDir.'/messages.en.concrete'));
29+
$this->assertFileExists($tempDir.'/messages.en.concrete');
3030
}
3131

3232
public function testDumpBackupsFileIfExisting()

Util/ArrayConverter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ private static function &getElementByPath(array &$tree, array $parts)
6262
* $tree['foo'] was string before we found array {bar: test2}.
6363
* Treat new element as string too, e.g. add $tree['foo.bar'] = 'test2';
6464
*/
65-
$elem = &$elem[ implode('.', array_slice($parts, $i)) ];
65+
$elem = &$elem[implode('.', array_slice($parts, $i))];
6666
break;
6767
}
6868
$parentOfElem = &$elem;

0 commit comments

Comments
 (0)