blob: 5709458fdb3c9a4240e1105021199017b2e31f57 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
// WARN; Cannot download dependency modules from internet during sandbox testing!
function main(
// Postgresql $a,
// array $b,
// object $c,
int $d = 123,
string $e = "default value",
float $f = 3.5,
bool $g = true,
) {
return $d;
}
|