Home Page User Forums Launchpad
/** * Function description. * * @param string $foo A variable. * @return string */ function fooBar($foo) { if ($foo === 'bar') { $out[] = $foo; } else { $out[] = 'baz'; } return implode('', $out); }