Skip to content

Commit 967be0c

Browse files
committed
Fix CS
1 parent 5ed74d5 commit 967be0c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/CsvViewPlugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public function bootstrap(PluginApplicationInterface $app): void
4747
'accept' => ['text/csv'],
4848
'param' => '_ext',
4949
'value' => 'csv',
50-
]
50+
],
5151
);
5252
}
5353
}

tests/TestCase/View/CsvViewTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public function testBom()
6969
{
7070
if (!extension_loaded('mbstring')) {
7171
$this->markTestSkipped(
72-
'The mbstring extension is not available.'
72+
'The mbstring extension is not available.',
7373
);
7474
}
7575

@@ -91,7 +91,7 @@ public function testBomMultipleContentRows()
9191
{
9292
if (!extension_loaded('mbstring')) {
9393
$this->markTestSkipped(
94-
'The mbstring extension is not available.'
94+
'The mbstring extension is not available.',
9595
);
9696
}
9797

@@ -118,7 +118,7 @@ public function testBomMultipleContentRowsWithHeader()
118118
{
119119
if (!extension_loaded('mbstring')) {
120120
$this->markTestSkipped(
121-
'The mbstring extension is not available.'
121+
'The mbstring extension is not available.',
122122
);
123123
}
124124

@@ -215,7 +215,7 @@ public function testRenderWithMbstring()
215215
{
216216
if (!extension_loaded('mbstring')) {
217217
$this->markTestSkipped(
218-
'The mbstring extension is not available.'
218+
'The mbstring extension is not available.',
219219
);
220220
}
221221
$data = [

0 commit comments

Comments
 (0)