Browse Source

Fix test

PEAR_1_4DEV
Marcus Boerger 23 years ago
parent
commit
76ae4e10bf
  1. 2
      ext/reflection/tests/bug26695.phpt
  2. 2
      ext/reflection/tests/static_properties_002.phpt

2
ext/reflection/tests/bug26695.phpt

@ -11,7 +11,7 @@ class Bar {
}
}
$class = new Reflection_Class('bar');
$class = new ReflectionClass('bar');
$methods = $class->getMethods();
$params = $methods[0]->getParameters();

2
ext/reflection/tests/static_properties_002.phpt

@ -44,7 +44,7 @@ derived::inc();
base::show();
derived::show();
$r = new reflection_class('derived');
$r = new ReflectionClass('derived');
echo 'Number of properties: '. count($r->getStaticProperties()) . "\n";
echo "Done\n";

Loading…
Cancel
Save