Searched refs:abstract (Results 1 – 25 of 165) sorted by relevance
1234567
2 ZE2 A class that inherits an abstract method is abstract8 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
2 ZE2 An abstract class must be declared abstract9 abstract function show();15 Fatal error: Class fail contains 1 abstract method and must therefore be declared abstract or imple…
2 ZE2 A derived class with an abstract method must be abstract12 abstract function show();20 Fatal error: Class derived contains 1 abstract method and must therefore be declared abstract or im…
2 ZE2 A static abstract methods23 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…
2 ZE2 A method cannot be redeclared abstract15 abstract function show();22 Fatal error: Class fail contains 1 abstract method and must therefore be declared abstract or imple…
2 ZE2 An abstract method may not be called14 abstract class Derived extends Root implements MyInterface {33 Fatal error: Class Fails contains 1 abstract method and must therefore be declared abstract or impl…
2 ZE2 An abstract method may not be called8 abstract class fail {9 abstract function show();30 Fatal error: Cannot call abstract method fail::show() in %s on line %d
2 ZE2 An abstract class cannot be instantiated8 abstract class fail {9 abstract function show();29 Fatal error: Cannot instantiate abstract class fail in %s on line %d
2 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…
2 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…
2 errmsg: static abstract function 7 static abstract function foo ();13 Strict Standards: Static function test::foo() should not be abstract in %s on line %d15 Fatal error: Class test contains 1 abstract method and must therefore be declared abstract or imple…
2 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
2 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 335 Fatal error: Cannot call abstract method Foo::bar() in %sbug63111.php on line 20
2 Test for abstract static classes5 abstract class TestClass7 abstract static public function getName();13 Strict Standards: Static function TestClass::getName() should not be abstract in %sabstract-static.…
2 errmsg: properties cannot be abstract7 abstract $var = 1;13 Fatal error: Properties cannot be declared abstract in %s on line %d
2 abstract final methods errmsg7 final abstract function foo();13 Fatal error: Cannot use the final modifier on an abstract class member in %s on line %d
2 Testing class_alias() with abstract class using an arbitrary class name as alias6 abstract class foo { }16 Fatal error: Cannot instantiate abstract class foo in %s on line %d
2 errmsg: Non-abstract method must contain body6 abstract class test { 16 Fatal error: Non-abstract method Impl::Foo() must contain body in %s on line %d
2 Bug #43200.2 (Interface implementation / inheritence not possible in abstract classes)10 abstract class B implements A {11 abstract public function foo();
5 abstract class space{7 abstract protected function unfold();10 abstract class shape extends space{15 abstract class quad extends shape{
2 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…
9 abstract class b {}26 abstract class y28 abstract function a();29 abstract protected function b();60 string(8) "abstract"128 string(8) "abstract"135 string(8) "abstract"
2 abstract alias10 T1::foo as abstract;15 Fatal error: Cannot use 'abstract' as method modifier in %s on line %d
2 Traits can fulfill the requirements of abstract base classes.7 abstract class Base {8 abstract function sayWorld();
Completed in 27 milliseconds