summaryrefslogtreecommitdiff
path: root/ext/ctype/tests/ctype_punct_variation1.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/ctype/tests/ctype_punct_variation1.phpt')
-rw-r--r--ext/ctype/tests/ctype_punct_variation1.phpt12
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/ctype/tests/ctype_punct_variation1.phpt b/ext/ctype/tests/ctype_punct_variation1.phpt
index 0f57c45a66..e1b6cc22ad 100644
--- a/ext/ctype/tests/ctype_punct_variation1.phpt
+++ b/ext/ctype/tests/ctype_punct_variation1.phpt
@@ -5,8 +5,8 @@ Test ctype_punct() function : usage variations - different data types as $c argu
--FILE--
<?php
/* Prototype : bool ctype_punct(mixed $c)
- * Description: Checks for any printable character which is not whitespace
- * or an alphanumeric character
+ * Description: Checks for any printable character which is not whitespace
+ * or an alphanumeric character
* Source code: ext/ctype/ctype.c
*/
@@ -16,7 +16,7 @@ Test ctype_punct() function : usage variations - different data types as $c argu
echo "*** Testing ctype_punct() : usage variations ***\n";
-$orig = setlocale(LC_CTYPE, "C");
+$orig = setlocale(LC_CTYPE, "C");
//get an unset variable
$unset_var = 10;
@@ -63,7 +63,7 @@ $inputs = array(
false,
TRUE,
FALSE,
-
+
// empty data
/*16*/ "",
'',
@@ -73,7 +73,7 @@ $inputs = array(
/*19*/ ";:'@",
'#~/?',
$heredoc,
-
+
// object data
/*22*/ new classA(),
@@ -97,7 +97,7 @@ foreach($inputs as $input) {
fclose($fp);
-setlocale(LC_CTYPE, $orig);
+setlocale(LC_CTYPE, $orig);
?>
===DONE===
--EXPECTF--