1
0
mirror of https://github.com/php/php-src.git synced 2026-04-27 10:16:41 +02:00

Rename reflection*.phpt to Reflection*.phpt for consistency.

This commit is contained in:
Sebastian Bergmann
2009-04-08 16:08:58 +00:00
parent bab2569a8a
commit fa587effb7
107 changed files with 2 additions and 2 deletions
@@ -0,0 +1,23 @@
--TEST--
ReflectionClass::getInterfaceNames()
--CREDITS--
Michelangelo van Dam <dragonbe@gmail.com>
#testfest roosendaal on 2008-05-10
--FILE--
<?php
interface Foo { }
interface Bar { }
class Baz implements Foo, Bar { }
$rc1 = new ReflectionClass("Baz");
var_dump($rc1->getInterfaceNames());
?>
--EXPECT--
array(2) {
[0]=>
unicode(3) "Foo"
[1]=>
unicode(3) "Bar"
}