1.2.700. Missing Abstract Method¶
Abstract methods must have a non-abstract version for the class to be complete. A class that is missing one abstract definition cannot be instantiated.
<?php
// This is a valid definition
class b extends a {
function foo() {}
function bar() {}
}
// This compiles, but will emit a fatal error if instantiated
class c extends a {
function bar() {}
}
// This illustration lint but doesn't run.
// moving this class at the beginning of the code will make lint fail
abstract class a {
abstract function foo() ;
}
?>
See also Classes Abstraction.
1.2.700.2. Connex PHP features¶
1.2.700.2.1. Suggestions¶
Implement the missing methods
Remove the partially implemented class
Mark the partially implemented class abstract
1.2.700.2.2. Specs¶
Short name |
Classes/MissingAbstractMethod |
Rulesets |
|
Exakat since |
2.1.0 |
PHP Version |
All |
Severity |
Minor |
Time To Fix |
Quick (30 mins) |
Precision |
Very high |
Available in |