Skip to content

Commit 48a804a

Browse files
committed
[Coding Standards] Fix sample code logic
1 parent 3de772b commit 48a804a

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)