From 9ed3e9c47ca80dd60cf5444202211a8aefcbbba7 Mon Sep 17 00:00:00 2001 From: Justin Clark-Casey Date: Fri, 5 Sep 2014 14:06:55 +0100 Subject: [PATCH] Add php closing tag to get-user-by-name.php example integration code --- integration/php/src/programs/users/get-user-by-name.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/integration/php/src/programs/users/get-user-by-name.php b/integration/php/src/programs/users/get-user-by-name.php index bd5fb3c..c51873a 100644 --- a/integration/php/src/programs/users/get-user-by-name.php +++ b/integration/php/src/programs/users/get-user-by-name.php @@ -27,4 +27,6 @@ catch (Exception $e) $firstName = $params->args['firstName']; $lastName = $params->args['lastName']; -GetUserAccountByName($USER_ACCOUNTS_SERVICE_URI, $firstName, $lastName, TRUE); \ No newline at end of file +GetUserAccountByName($USER_ACCOUNTS_SERVICE_URI, $firstName, $lastName, TRUE); + +?> \ No newline at end of file