From 74fa7d00e27abeeedd86f1292456eca5fbb04f86 Mon Sep 17 00:00:00 2001 From: Nihal Date: Sat, 24 Jun 2017 13:43:55 +0530 Subject: [PATCH] Fix indentation in PHP7 and PHP5 variables example --- Examples/php/variables/runme.php | 4 ++-- Examples/php5/variables/runme.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Examples/php/variables/runme.php b/Examples/php/variables/runme.php index bbfeb610b..14f27f389 100644 --- a/Examples/php/variables/runme.php +++ b/Examples/php/variables/runme.php @@ -26,10 +26,10 @@ echo "pt = ".pt_get(), point_print(pt_get()) , "\n"; /* Try to set the values of some global variables */ -$a = "42.14"; + $a = "42.14"; ivar_set($a); -echo "a = $a\n"; + echo "a = $a\n"; svar_set(-31000); lvar_set(65537); uivar_set(123456); diff --git a/Examples/php5/variables/runme.php b/Examples/php5/variables/runme.php index bbfeb610b..14f27f389 100644 --- a/Examples/php5/variables/runme.php +++ b/Examples/php5/variables/runme.php @@ -26,10 +26,10 @@ echo "pt = ".pt_get(), point_print(pt_get()) , "\n"; /* Try to set the values of some global variables */ -$a = "42.14"; + $a = "42.14"; ivar_set($a); -echo "a = $a\n"; + echo "a = $a\n"; svar_set(-31000); lvar_set(65537); uivar_set(123456);