summaryrefslogtreecommitdiff
path: root/Examples/FunctionReturnValue/functionreturnvalue.php
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/FunctionReturnValue/functionreturnvalue.php')
-rw-r--r--Examples/FunctionReturnValue/functionreturnvalue.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/Examples/FunctionReturnValue/functionreturnvalue.php b/Examples/FunctionReturnValue/functionreturnvalue.php
index ba8f52b..1626e19 100644
--- a/Examples/FunctionReturnValue/functionreturnvalue.php
+++ b/Examples/FunctionReturnValue/functionreturnvalue.php
@@ -1,13 +1,12 @@
<?php
-/*
+/**
* functionreturnvalue.php
* @author Jasper van Eck<jasper.vaneck@copernica.com>
*
* An example file to show the working of a function call with a return value.
*/
-/*
+/**
* Run a function which returns a value.
*/
-echo "Function which returns a value; my_return_value_function()\n"
echo my_return_value_function() . "\n";