Home
last modified time | relevance | path

Searched refs:interface (Results 1 – 25 of 227) sorted by relevance

12345678910

/PHP-5.5/ext/reflection/tests/
H A DReflectionClass_getInterfaces_002.phpt2 ReflectionClass::getInterfaces() - interface ordering.
8 interface I1 {}
9 interface I2 {}
10 interface I3 {}
11 interface I4 extends I3 {}
12 interface I5 extends I4 {}
13 interface I6 extends I5, I1, I2 {}
14 interface I7 extends I6 {}
/PHP-5.5/ext/sockets/tests/
H A Dmcast_ipv4_recv.phpt12 "interface" => 'lo',
25 $interface = "lo";
46 "interface" => $interface,
63 "interface" => $interface,
75 "interface" => $interface,
87 "interface" => $interface,
100 "interface" => $interface,
111 "interface" => $interface,
123 "interface" => $interface,
134 "interface" => $interface,
[all …]
H A Dmcast_ipv6_recv.phpt21 "interface" => 0,
52 $interface = 0;
68 "interface" => $interface,
92 "interface" => $interface,
104 "interface" => $interface,
114 "interface" => $interface,
127 "interface" => $interface,
138 "interface" => $interface,
150 "interface" => $interface,
161 "interface" => $interface,
[all …]
H A Dmcast_ipv6_recv_limited.phpt15 * we're dealing with interface-local traffic... */
18 "interface" => 0,
21 die('skip unable to join multicast group on any interface.');
29 "interface" => 0,
34 "interface" => 0,
47 $interface = 0;
63 "interface" => $interface,
87 "interface" => $interface,
99 "interface" => $interface,
/PHP-5.5/Zend/tests/
H A Dinter_04.phpt2 Trying declare interface with repeated name of inherited method
6 interface a {
10 interface b {
14 interface c extends a, b {
H A Dobjects_018.phpt2 Using the same function name on interface with inheritance
6 interface Itest {
10 interface Itest2 {
14 interface Itest3 extends Itest, Itest2 {
H A Dobjects_014.phpt2 extending the same interface twice
6 interface foo {
9 interface bar extends foo, foo {
15 Fatal error: Class bar cannot implement previously implemented interface foo in %s on line %d
H A Dclass_alias_009.phpt2 Testing interface declaration using the original and alias class name
6 interface a { }
10 interface c extends a, b { }
14 Fatal error: Class c cannot implement previously implemented interface a in %s on line %d
H A Dexception_005.phpt2 Trying to throw exception of an interface
6 interface a { }
12 Fatal error: Cannot instantiate interface a in %s on line %d
H A Dinter_03.phpt2 Testing interface constants with inheritance
6 interface a {
10 interface b extends a {
H A Dinter_05.phpt2 Trying to inherit a class in an interface
6 interface a extends Exception { }
10 Fatal error: a cannot implement Exception - it is not an interface in %s on line %d
H A Dobjects_013.phpt2 implementing the same interface twice
6 interface foo {
15 Fatal error: Class bar cannot implement previously implemented interface foo in %s on line %d
H A Dinterface_exists_002.phpt8 interface IFoo { }
10 interface ITest extends IFoo { }
12 interface IBar extends IFoo { }
H A Derrmsg_025.phpt6 interface test1 {
10 interface test2 {
20 Fatal error: Cannot inherit previously-inherited or override constant FOO from interface test2 in %…
H A Dinter_007.phpt6 interface d {
10 interface c {
16 interface a extends d, w { }
H A Dbug33732.phpt2 Bug #33732 (Wrong behavior of constants in class and interface extending)
5 interface iA {
20 interface iA2 {
24 interface iB2 extends iA2 {
H A Dinter_01.phpt2 Inherited constant from interface
5 interface foo {
18 Fatal error: Cannot inherit previously-inherited or override constant foo from interface foo in %s …
/PHP-5.5/tests/classes/
H A Dinterface_constant_inheritance_001.phpt2 Ensure an interface may not shadow an inherited constant.
5 interface I1 {
9 interface I2 extends I1 {
17 Fatal error: Cannot inherit previously-inherited or override constant FOO from interface I1 in %s o…
H A Dinterface_instantiate.phpt2 ZE2 An interface cannot be instantiated
8 interface if_a {
16 Fatal error: Cannot instantiate interface if_a in %s on line %d
H A Dinterface_method_private.phpt2 ZE2 An interface method cannot be private
8 interface if_a {
15 Fatal error: Access type for interface method if_a::err() must be omitted in %s on line %d
H A Dinterface_constant_inheritance_002.phpt2 Ensure a class may not shadow a constant inherited from an interface.
5 interface I {
17 Fatal error: Cannot inherit previously-inherited or override constant FOO from interface I in %s on…
H A Dinterface_constant_inheritance_003.phpt5 interface I1 {
9 interface I2 {
20 Fatal error: Cannot inherit previously-inherited or override constant FOO from interface I2 in %s o…
H A Dinterface_and_extends.phpt2 ZE2 a class cannot extend an interface
8 interface Test
26 Fatal error: Class Tester cannot extend from interface Test in %sinterface_and_extends.php on line …
/PHP-5.5/ext/standard/tests/class_object/
H A Dget_declared_interfaces_variation1.phpt18 echo "\n-- before interface is used --\n";
22 echo "\n-- after interface is used --\n";
31 -- before interface is used --
34 -- after interface is used --
/PHP-5.5/Zend/tests/traits/bugs/
H A Dinterfaces.phpt2 Make sure trait does not implement an interface.
7 interface MyInterface {
19 Fatal error: Cannot use 'MyInterface' as interface on 'THello' since it is a Trait in %s on line %d

Completed in 27 milliseconds

12345678910