Skip to content

Commit 2fb1d7a

Browse files
committed
fixed short array CS in comments
1 parent b74ca07 commit 2fb1d7a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Data/Bundle/Reader/BundleEntryReaderInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ interface BundleEntryReaderInterface extends BundleReaderInterface
3535
*
3636
* Then the value can be read by calling:
3737
*
38-
* $reader->readEntry('...', 'en', array('TopLevel', 'NestedLevel', 'Entry'));
38+
* $reader->readEntry('...', 'en', ['TopLevel', 'NestedLevel', 'Entry']);
3939
*
4040
* @param string $path The path to the resource bundle
4141
* @param string $locale The locale to read

Tests/NumberFormatter/AbstractNumberFormatterTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ public function formatRoundingModeRoundHalfUpProvider()
439439
return [
440440
[1.121, '1.12'],
441441
[1.123, '1.12'],
442-
// array(1.125, '1.13'),
442+
// [1.125, '1.13'],
443443
[1.127, '1.13'],
444444
[1.129, '1.13'],
445445
[1020 / 100, '10.20'],

0 commit comments

Comments
 (0)