Searched refs:abstract (Results 1 – 25 of 220) sorted by relevance
123456789
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…
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 errmsg: properties cannot be abstract7 abstract $var = 1;13 Fatal error: Properties cannot be declared abstract in %s on line %d
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 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 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 Ensure private methods with the same name are not checked for inheritance rules - abstract8 abstract class B extends A {9 abstract function test();
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 fail even after calling setAccessible(true)6 abstract class Test {7 abstract static function foo();20 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 abstract alias10 T1::foo as abstract;15 Fatal error: Cannot use 'abstract' as method modifier in %s on line %d
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…
Completed in 33 milliseconds