12345678910111213141516171819202122232425262728293031 |
- --TEST--
- ReflectionParameter::__construct(): Invalid method as constructor
- --FILE--
- <?php
- // Invalid class name
- try {
- new ReflectionParameter (array ('A', 'b'), 0);
- } catch (ReflectionException $e) { echo $e->getMessage ()."\n"; }
- // Invalid class method
- try {
- new ReflectionParameter (array ('C', 'b'), 0);
- } catch (ReflectionException $e) { echo $e->getMessage ()."\n"; }
- // Invalid object method
- try {
- new ReflectionParameter (array (new C, 'b'), 0);
- } catch (ReflectionException $e) { echo $e->getMessage ()."\n"; }
- echo "Done.\n";
- class C {
- }
- ?>
- --EXPECTF--
- Class A does not exist
- Method C::b() does not exist
- Method C::b() does not exist
- Done.
|