Searched refs:abstract (Results 1 – 25 of 245) sorted by relevance
12345678910
2 Allow abstract function override6 abstract class A { abstract function bar($x); }7 abstract class B extends A { abstract function bar($x); }
2 Allow abstract function override6 abstract class A { abstract function bar($x); }7 abstract class B extends A { abstract function bar($x, $y = 0); }
2 Allow abstract function override6 abstract class A { abstract function bar($x, $y = 0); }7 abstract class B extends A { abstract function bar($x); }
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 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 Check that arguments are freed when a call to an abstract method throws6 abstract class Test {7 abstract static function method();25 Cannot call abstract method Test::method()26 Cannot call abstract method Test::method()
2 Constructor promotion cannot be used inside an abstract constructor6 abstract class Test {7 abstract public function __construct(public int $x);12 Fatal error: Cannot declare promoted property in an abstract constructor in %s on line %d
2 errmsg: static abstract function7 static abstract function foo ();13 Fatal error: Class test contains 1 abstract method and must therefore be declared abstract or imple…
14 abstract class Test {15 abstract function foo();20 Fatal error: Class Test2 contains 1 abstract method and must therefore be declared abstract or impl…
2 Test for abstract static classes5 abstract class TestClass7 abstract static public function getName();
2 Bug #63111 (is_callable() lies for abstract static method)5 abstract class Foo {6 abstract static function bar();11 abstract class Bar {34 Fatal error: Uncaught Error: Cannot call abstract method Foo::bar() in %sbug63111.php:20
2 Bug #69084: Unclear error message when not implementing a renamed abstract trait function7 abstract public function doStuff();29 Fatal error: Class Bar contains 1 abstract method and must therefore be declared abstract or implem…
2 ZE2 A class that inherits an abstract method is abstract6 abstract class pass {7 abstract function show();10 abstract class fail extends pass {19 Fatal error: Uncaught Error: Cannot instantiate abstract class fail in %s:%d
2 ZE2 An abstract class must be declared abstract7 abstract function show();13 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 abstract10 abstract function show();16 Fatal error: Class derived contains 1 abstract method and must therefore be declared abstract or im…
2 ZE2 A method cannot be redeclared abstract13 abstract function show();19 Fatal error: Class fail contains 1 abstract method and must therefore be declared abstract or imple…
2 ZE2 An abstract class cannot be instantiated6 abstract class fail {7 abstract function show();27 Fatal error: Uncaught Error: Cannot instantiate abstract class fail in %s:%d
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 Fixed bug #78895 (Reflection detects abstract non-static class as abstract static).5 abstract class Foo {6 abstract public function f1();12 abstract public function f2();31 string(8) "abstract"
2 ReflectionMethod::invoke() on an abstract method should fail6 abstract class Test {7 abstract static function foo();19 Trying to invoke abstract method Test::foo()
2 Abstract private trait method forwarded as abstract protected method7 abstract private function method(int $a, string $b);10 abstract class C {13 abstract protected function method(int $a, string $b);
2 registerNodeClass() with an abstract class should fail8 abstract class Test extends DOMElement {9 abstract function foo();24 ValueError: DOMDocument::registerNodeClass(): Argument #2 ($extendedClass) must not be an abstract …
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…
2 #[\Override]: abstract __construct6 abstract class P {7 public abstract function __construct();
2 Test serialize() & unserialize() functions: objects (abstract classes)8 // abstract class9 abstract class Name16 abstract protected function getClassName();21 // implement abstract class
Completed in 40 milliseconds