Home
last modified time | relevance | path

Searched refs:trait (Results 1 – 25 of 170) sorted by relevance

1234567

/PHP-5.5/ext/standard/tests/class_object/
H A Dtrait_exists_basic_001.phpt6 * Description: Checks if the trait exists
17 trait MyTrait {}
21 echo "\nCalling trait_exists() on existing trait with autoload explicitly enabled:\n";
29 echo "\nCalling trait_exists() on non-existent trait with autoload unspecified:\n";
31 echo "\nCalling trait_exists() on existing trait with autoload unspecified:\n";
38 Calling trait_exists() on non-existent trait with autoload explicitly enabled:
42 Calling trait_exists() on existing trait with autoload explicitly enabled:
45 Calling trait_exists() on non-existent trait with autoload explicitly enabled:
48 Calling trait_exists() on existing trait with autoload explicitly disabled:
51 Calling trait_exists() on non-existent trait with autoload unspecified:
[all …]
H A Dget_declared_traits_basic_001.phpt14 trait MyTrait {}
20 foreach (get_declared_traits() as $trait) {
21 if (!trait_exists($trait)) {
22 echo "Error: $trait is not a valid trait.\n";
26 echo "\n-- Ensure trait is listed --\n";
48 -- Ensure trait is listed --
/PHP-5.5/Zend/tests/traits/
H A Derror_011.phpt2 Testing trait collisions
6 trait foo {
9 trait c {
13 trait b {
26 Fatal error: Trait method test has not been applied, because there are collisions with other trait
H A Derror_010.phpt2 Trying to exclude trait method multiple times
6 trait foo {
9 trait c {
23 Fatal error: Failed to evaluate a trait precedence (test). Method of trait foo was defined to be ex…
H A Dlanguage009.phpt2 In instead definitions all trait whose methods are meant to be hidden can be listed.
7 trait A {
13 trait B {
19 trait C {
H A Derror_007.phpt2 Trying to instantiate a trait
6 trait abc {
13 Fatal error: Cannot instantiate trait abc in %s on line %d
H A Derror_009.phpt2 Trying to extend a trait
6 trait abc { }
12 Fatal error: Class foo cannot extend from trait abc in %s on line %d
H A Dbug60173.phpt2 Bug #60173 (Wrong error message on reflective trait instantiation)
6 trait foo { }
12 Fatal error: Cannot instantiate trait foo in %s on line %d
H A Derror_015.phpt2 Trying to add an alias to a trait method where there is another with same name.
7 trait foo {
11 trait baz {
26 Fatal error: Trait method test has not been applied, because there are collisions with other trait
H A Dflattening003.phpt7 trait Hello {
13 trait World {
19 trait HelloWorld {
H A Dlanguage015.phpt2 Invalid conflict resolution (unused trait as lhs of "insteadof")
5 trait T1 {
8 trait T2 {
H A Dlanguage016.phpt2 Invalid conflict resolution (unused trait as rhs of "insteadof")
5 trait T1 {
8 trait T2 {
H A Dlanguage017.phpt2 Invalid conflict resolution (unused trait as lhs of "as")
5 trait T1 {
8 trait T2 {
H A Derror_001.phpt6 trait foo {
12 trait foo2 {
28 Fatal error: Class A cannot extend from trait foo in %s on line %d
H A Dtrait_constant_001.phpt2 __TRAIT__: Basics, a constant denoiting the trait of definition.
6 trait TestTrait {
20 trait TestTraitIndirect {
H A Dbug54441.phpt2 Bug #54441 (Changing trait static method visibility)
6 trait Foo {
19 Fatal error: The modifiers for the trait alias dontKnow() need to be changed in the same statment i…
H A Dconflict001.phpt7 trait THello1 {
13 trait THello2 {
25 Fatal error: Trait method hello has not been applied, because there are collisions with other trait
H A Dbug60165c.phpt2 Bug #60165 (Aliasing unexisting trait should throw/trigger the exception/error)
6 trait A {
10 trait B {
H A Dmethods_002.phpt6 trait foo {
12 trait baz {
28 …hod __clone has not been applied, because there are collisions with other trait methods on bar in …
H A Dbug60165d.phpt2 Bug #60165 (Aliasing unexisting trait should throw/trigger the exception/error)
8 trait A {}
10 trait B {
H A Dbug61052.phpt2 Bug #61052 (missing error check in trait 'insteadof' clause)
5 trait T1 {
8 trait T2 {
H A Dbug55214.phpt2 Bug #55214 (Use of __CLASS__ within trait returns trait name not class name)
6 trait ATrait {
27 trait Indirect {
H A Dbug55554e.phpt8 trait TC1 {
14 trait TC2 {
30 …rtCollision has not been applied, because there are collisions with other trait methods on ReportC…
/PHP-5.5/Zend/tests/
H A Dbug63219.phpt2 Bug #63219 (Segfault when aliasing trait method when autoloader throws excpetion)
5 trait TFoo {
18 Fatal error: Could not find trait Typo in %sbug63219.php on line %d
/PHP-5.5/Zend/tests/traits/bugs/
H A Dcase-sensitive.phpt7 trait A {
12 trait B {
23 Fatal error: Trait method M1 has not been applied, because there are collisions with other trait me…

Completed in 23 milliseconds

1234567