diff options
Diffstat (limited to 'ext/com_dotnet')
| -rw-r--r-- | ext/com_dotnet/tests/bug45280.phpt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/com_dotnet/tests/bug45280.phpt b/ext/com_dotnet/tests/bug45280.phpt index b530083cca..393799e374 100644 --- a/ext/com_dotnet/tests/bug45280.phpt +++ b/ext/com_dotnet/tests/bug45280.phpt @@ -8,8 +8,9 @@ if (!extension_loaded("com_dotnet")){ echo "skip COM/.Net support not present"; <?php $dict = new COM("Scripting.Dictionary"); +$reflection = new ReflectionObject($dict); ob_start(); -ReflectionObject::export($dict); +echo $reflection; ob_get_clean(); echo 'done'; |
