Searched refs:T1 (Results 1 – 25 of 48) sorted by relevance
12
/PHP-8.0/ext/reflection/tests/ |
H A D | traits004.phpt | 5 trait T1 { } 9 class C2 { use T1; } 10 class C3 { use T1; use T2; } 30 string(2) "T1" 33 ["T1"]=> 36 string(2) "T1" 43 string(2) "T1" 48 ["T1"]=> 51 string(2) "T1"
|
H A D | traits005.phpt | 5 trait T1 { function m1() { } function m2() { } } 8 class C2 { use T1; } 9 class C3 { use T1 { m1 as a1; } } 10 class C4 { use T1 { m1 as a1; m2 as a2; } } 31 string(6) "T1::m1" 37 string(6) "T1::m1" 39 string(6) "T1::m2"
|
H A D | bug71018.phpt | 5 class T1 { 19 class T2 extends T1 {} 21 $Prop1 = new ReflectionProperty(T1::class, 'data'); 26 $Prop1->setValue(\T1::class, "world"); 33 T1::$data = "world";
|
/PHP-8.0/Zend/tests/traits/ |
H A D | bug61052.phpt | 5 trait T1 { 6 function foo(){ echo "T1\n"; } 12 use T1, T2 { 13 T1::foo insteadof T1; 19 Fatal error: Inconsistent insteadof definition. The method foo is to be used from T1, but T1 is als…
|
H A D | bug61998.phpt | 6 use T1 { 15 trait T1 { 17 echo "From T1\n"; 31 use T1 { 50 $f->newFunc(); //from T1 54 $b->newFunc(); //from T1 62 From T1 64 From T1
|
H A D | language015.phpt | 5 trait T1 { 6 function foo() {echo "T1\n";} 12 use T1 { 13 T2::foo insteadof T1;
|
H A D | language016.phpt | 5 trait T1 { 6 function foo() {echo "T1\n";} 12 use T1 { 13 T1::foo insteadof T2;
|
H A D | language018.phpt | 5 trait T1 { 9 use T1 { 10 T1::foo as abstract;
|
H A D | language019.phpt | 5 trait T1 { 9 use T1 { 10 T1::foo as final;
|
H A D | bug76700.phpt | 5 trait T1 12 use T1 { 19 use T1;
|
H A D | language017.phpt | 5 trait T1 { 6 function foo() {echo "T1\n";} 12 use T1 {
|
H A D | bug75607.phpt | 6 trait T1 18 use T1;
|
H A D | bug75607a.phpt | 6 trait T1 18 use T1;
|
H A D | abstract_method_2.phpt | 6 trait T1 { 14 use T1, T2;
|
/PHP-8.0/ext/opcache/tests/opt/ |
H A D | nullsafe_001.phpt | 55 0002 T1 = JMP_NULL CV0($obj) 0004 56 0003 T1 = FETCH_OBJ_R CV0($obj) string("foo") 57 0004 SEND_VAL T1 1 60 0007 T1 = JMP_NULL CV0($obj) 0009 61 0008 T1 = ISSET_ISEMPTY_PROP_OBJ (isset) CV0($obj) string("foo") 62 0009 SEND_VAL T1 1 65 0012 T1 = JMP_NULL CV0($obj) 0014 66 0013 T1 = ISSET_ISEMPTY_PROP_OBJ (empty) CV0($obj) string("foo") 67 0014 SEND_VAL T1 1
|
H A D | sccp_016.phpt | 20 0000 T1 = ISSET_ISEMPTY_CV (isset) CV0($undef) 21 0001 T1 = JMPNZ_EX T1 0003 22 0002 T1 = QM_ASSIGN bool(true) 23 0003 RETURN T1
|
H A D | prop_types.phpt | 63 0002 #2.T1 [bool] = FETCH_OBJ_R #1.CV0($test) [object (instanceof Test)] string("public") 64 0003 SEND_VAL #2.T1 [bool] 1 83 0003 #1.T1 [long] = FETCH_OBJ_R THIS string("protected") 84 0004 SEND_VAL #1.T1 [long] 2 101 0002 #2.T1 [bool] = FETCH_OBJ_R #1.CV0($test2) [object (instanceof Test2)] string("public") 102 0003 SEND_VAL #2.T1 [bool] 1 121 0003 #1.T1 [long] = FETCH_OBJ_R THIS string("protected") 122 0004 SEND_VAL #1.T1 [long] 2
|
/PHP-8.0/Zend/tests/ |
H A D | bug55086.phpt | 7 trait T1 { 17 use N1\T1; 20 use T1, T2 { 21 T1::hello insteadof T2; 22 T1::hello as foo;
|
H A D | bug62069.phpt | 6 trait T1 { 8 echo "From T1\n"; 22 use T1, T2 { 32 Fatal error: An alias was defined for method func(), which exists in both T1 and T2. Use T1::func o…
|
H A D | bug62069_2.phpt | 6 trait T1 { 8 echo "From T1\n"; 22 use T1 { 35 Fatal error: An alias was defined for method func(), which exists in both T1 and T2. Use T1::func o…
|
H A D | bug69174.phpt | 7 use T1, T2 { 8 T1::foo insteadof T2; 9 T1::bar insteadof T2;
|
H A D | bug55825.phpt | 5 trait T1 { 11 class C { use T1; }
|
/PHP-8.0/Zend/tests/type_declarations/ |
H A D | typed_properties_085.phpt | 6 trait T1 { 13 use T1, T2; 17 Fatal error: T1 and T2 define the same property ($prop) in the composition of C. However, the defin…
|
/PHP-8.0/ext/opcache/tests/ |
H A D | preload.inc | 26 trait T1 { 32 use T1; 49 use T1 { 50 T1::foo as bar;
|
/PHP-8.0/Zend/tests/attributes/ |
H A D | 011_inheritance.phpt | 38 trait T1 46 use T1; 51 use T1; 56 $ref = new \ReflectionClass(T1::class);
|
Completed in 29 milliseconds
12