Home
last modified time | relevance | path

Searched refs:abstract (Results 1 – 25 of 164) sorted by relevance

1234567

/PHP-5.5/tests/classes/
H A Dabstract_inherit.phpt2 ZE2 A class that inherits an abstract method is abstract
8 abstract class pass {
9 abstract function show();
12 abstract class fail extends pass {
22 Fatal error: Cannot instantiate abstract class fail in %s on line %d
H A Dabstract_not_declared.phpt2 ZE2 An abstract class must be declared abstract
9 abstract function show();
15 Fatal error: Class fail contains 1 abstract method and must therefore be declared abstract or imple…
H A Dabstract_derived.phpt2 ZE2 A derived class with an abstract method must be abstract
12 abstract function show();
20 Fatal error: Class derived contains 1 abstract method and must therefore be declared abstract or im…
H A Dabstract_static.phpt2 ZE2 A static abstract methods
23 abstract static function func();
34 Strict Standards: Static function fail::func() should not be abstract in %sabstract_static.php(%d) …
36 Fatal error: Class fail contains 1 abstract method and must therefore be declared abstract or imple…
H A Dabstract_by_interface_001.phpt2 ZE2 An abstract method may not be called
14 abstract class Derived extends Root implements MyInterface {
33 Fatal error: Class Fails contains 1 abstract method and must therefore be declared abstract or impl…
H A Dabstract_redeclare.phpt2 ZE2 A method cannot be redeclared abstract
15 abstract function show();
22 Fatal error: Class fail contains 1 abstract method and must therefore be declared abstract or imple…
H A Dabstract.phpt2 ZE2 An abstract method may not be called
8 abstract class fail {
9 abstract function show();
30 Fatal error: Cannot call abstract method fail::show() in %s on line %d
H A Dabstract_by_interface_002.phpt2 ZE2 An abstract method may not be called
14 abstract class Derived extends Root implements MyInterface {
33 Fatal error: Class Fails contains 1 abstract method and must therefore be declared abstract or impl…
H A Dabstract_class.phpt2 ZE2 An abstract class cannot be instantiated
8 abstract class fail {
9 abstract function show();
29 Fatal error: Cannot instantiate abstract class fail in %s on line %d
H A Dfinal_abstract.phpt2 ZE2 A final method cannot be abstract
9 final abstract function show();
16 Fatal error: Cannot use the final modifier on an abstract class member in %s
/PHP-5.5/Zend/tests/
H A Dbug43323.phpt2 Bug #43323 (Wrong count abstract methods)
5 abstract class bar {
6 abstract public function bar();
12 Fatal error: Class foo contains 1 abstract method and must therefore be declared abstract or implem…
H A Dbug44414.phpt2 Bug #44414 (incomplete reporting about abstract methods)
5 abstract class A {
6 abstract function foo();
15 Fatal error: Class C contains 2 abstract methods and must therefore be declared abstract or impleme…
H A Derrmsg_018.phpt2 errmsg: static abstract function
7 static abstract function foo ();
13 Strict Standards: Static function test::foo() should not be abstract in %s on line %d
15 Fatal error: Class test contains 1 abstract method and must therefore be declared abstract or imple…
H A Daccess_modifiers_004.phpt2 using multiple access modifiers (abstract methods)
7 abstract abstract function foo() {
14 Fatal error: Multiple abstract modifiers are not allowed in %s on line %d
H A Dbug63111.phpt2 Bug #63111 (is_callable() lies for abstract static method)
5 abstract class Foo {
6 abstract static function bar();
11 abstract class Bar {
26 Strict Standards: Static function Foo::bar() should not be abstract in %sbug63111.php on line 3
35 Fatal error: Cannot call abstract method Foo::bar() in %sbug63111.php on line 20
H A Dabstract-static.phpt2 Test for abstract static classes
5 abstract class TestClass
7 abstract static public function getName();
13 Strict Standards: Static function TestClass::getName() should not be abstract in %sabstract-static.…
H A Derrmsg_037.phpt2 errmsg: properties cannot be abstract
7 abstract $var = 1;
13 Fatal error: Properties cannot be declared abstract in %s on line %d
H A Daccess_modifiers_007.phpt2 abstract final methods errmsg
7 final abstract function foo();
13 Fatal error: Cannot use the final modifier on an abstract class member in %s on line %d
H A Dclass_alias_008.phpt2 Testing class_alias() with abstract class using an arbitrary class name as alias
6 abstract class foo { }
16 Fatal error: Cannot instantiate abstract class foo in %s on line %d
H A Derrmsg_001.phpt2 errmsg: Non-abstract method must contain body
6 abstract class test {
16 Fatal error: Non-abstract method Impl::Foo() must contain body in %s on line %d
H A Dbug43200_2.phpt2 Bug #43200.2 (Interface implementation / inheritence not possible in abstract classes)
10 abstract class B implements A {
11 abstract public function foo();
H A Dbug32296.phpt5 abstract class space{
7 abstract protected function unfold();
10 abstract class shape extends space{
15 abstract class quad extends shape{
/PHP-5.5/Zend/tests/traits/bugs/
H A Dabstract-methods01.phpt2 Abstract Trait Methods should behave like common abstract methods.
8 public abstract function hello();
19 Fatal error: Class %s contains %d abstract method and must therefore be declared abstract or implem…
/PHP-5.5/ext/reflection/tests/
H A DReflectionClass_getModifierNames_basic.phpt9 abstract class b {}
26 abstract class y
28 abstract function a();
29 abstract protected function b();
60 string(8) "abstract"
128 string(8) "abstract"
135 string(8) "abstract"
/PHP-5.5/Zend/tests/traits/
H A Dlanguage018.phpt2 abstract alias
10 T1::foo as abstract;
15 Fatal error: Cannot use 'abstract' as method modifier in %s on line %d

Completed in 27 milliseconds

1234567