summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/ReflectionProperty_getModifiers.001.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/reflection/tests/ReflectionProperty_getModifiers.001.phpt')
-rw-r--r--ext/reflection/tests/ReflectionProperty_getModifiers.001.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/reflection/tests/ReflectionProperty_getModifiers.001.phpt b/ext/reflection/tests/ReflectionProperty_getModifiers.001.phpt
index fe888a83bc..6d7ddbe834 100644
--- a/ext/reflection/tests/ReflectionProperty_getModifiers.001.phpt
+++ b/ext/reflection/tests/ReflectionProperty_getModifiers.001.phpt
@@ -8,13 +8,13 @@ Steve Seear <stevseea@php.net>
function reflectProperty($class, $property) {
$propInfo = new ReflectionProperty($class, $property);
-
+
echo "**********************************\n";
echo "Reflecting on property $class::$property\n\n";
-
+
echo "getModifiers():\n";
var_dump($propInfo->getModifiers());
-
+
echo "\n**********************************\n";
}
@@ -23,7 +23,7 @@ class TestClass
public $pub;
static public $stat = "static property";
/**
- * This property has a comment.
+ * This property has a comment.
*/
protected $prot = 4;
private $priv = "keepOut";