setFunctionName("echo_text") ->setArgumentsTypes(["input"]) // one argument ); /** * 2. Implement the function * * @param string $input * @return string */ function echo_text(string $input): string { return $input; }