Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bug-441275.php « tests « Documentation « PhpDocumentor-1.3.2 « libs - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5259da9d05795e77737ec5acc6861d289dcca846 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
/** @package tests */
/**
* This makes sure the basic element of bug 44127 is fixed
*/
function test_441275($foo = array())
{
}

/**
* This tests some more advanced cases to make sure to handle them
*/
function test2_441275($foo = array("item1","item2",'item3' => "item4",array("item5","item6"), 'item7' => 
			array('item8','item9',"array('item9','item10')")), $foobar)
{
}

?>