Skip to content

Commit ad9e261

Browse files
committed
Merge pull request #3094 from bicpi/fix_coding_standards_sample_code
[Coding Standards] Fix sample code logic
2 parents 66e76bf + 48a804a commit ad9e261

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contributing/code/standards.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,11 @@ example containing most features described below:
5858
private function transformText($dummy, array $options = array())
5959
{
6060
$mergedOptions = array_merge(
61-
$options,
6261
array(
6362
'some_default' => 'values',
6463
'another_default' => 'more values',
65-
)
64+
),
65+
$options
6666
);
6767
6868
if (true === $dummy) {

0 commit comments

Comments
 (0)