You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by pd...@apache.org on 2018/08/22 16:26:52 UTC

[incubator-openwhisk-website] branch master updated: Fix missing ending statement in php example (#322)

This is an automated email from the ASF dual-hosted git repository.

pdesai pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk-website.git


The following commit(s) were added to refs/heads/master by this push:
     new b0cd9e6  Fix missing ending statement in php example (#322)
b0cd9e6 is described below

commit b0cd9e607b907f7f58e4393d32cf091b20178fab
Author: Justin Halsall <Ju...@users.noreply.github.com>
AuthorDate: Wed Aug 22 12:26:50 2018 -0400

    Fix missing ending statement in php example (#322)
---
 _includes/code/hello.php | 1 +
 1 file changed, 1 insertion(+)

diff --git a/_includes/code/hello.php b/_includes/code/hello.php
index ce75126..b914e6e 100644
--- a/_includes/code/hello.php
+++ b/_includes/code/hello.php
@@ -6,3 +6,4 @@ function main(array $args) : array
     echo $greeting;
     return ["greeting" => $greeting];
 }
+?>