Apply PhpStorm source code formatting

This commit is contained in:
Fonata
2021-05-13 19:55:19 +02:00
committed by Fonata
parent 99daaa7235
commit ee13c17157

View File

@@ -166,18 +166,22 @@ class ParseTest extends TestCase {
// This also tests if ::load_data removed the BOM from the data;
// otherwise the 'title' column would have 3 extra bytes.
$this->assertEquals([
$this->assertEquals(
[
'title',
'isbn',
'publishedAt',
], array_keys(reset($this->csv->data)));
],
array_keys(reset($this->csv->data)));
$titles = array_column($this->csv->data, 'title');
$this->assertEquals([
$this->assertEquals(
[
'Красивая кулинария',
'The Wine Connoisseurs',
'Weißwein',
], $titles);
],
$titles);
}
public function testWithMultipleNewlines() {
@@ -185,7 +189,8 @@ class ParseTest extends TestCase {
$aElse9 = array_column($this->csv->data, 'else9');
/** @noinspection SpellCheckingInspection */
$this->assertEquals([
$this->assertEquals(
[
'Abweichung',
'Abweichung',
'Abweichung',
@@ -196,7 +201,8 @@ class ParseTest extends TestCase {
'Fehlt',
'Fehlt',
'Fehlt',
], $aElse9);
],
$aElse9);
}
/**