summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/ReflectionExtension_export_basic.phpt
blob: 42972f15745da8cb7b6113cf458d38fde0c85b1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--TEST--
ReflectionExtension::export()
--CREDITS--
Gerrit "Remi" te Sligte <remi@wolerized.com>
Leon Luijkx <leon@phpgg.nl>
--FILE--
<?php
ReflectionExtension::export("reflection", true);
ob_start();
ReflectionExtension::export("reflection", false);
$test = ob_get_clean();
var_dump(empty($test));
?>
--EXPECTF--
Deprecated: Function ReflectionExtension::export() is deprecated in %s on line %d
bool(false)