php-semver-checker icon indicating copy to clipboard operation
php-semver-checker copied to clipboard

Adding/Removing the abstract modifier on a class/trait

Open tomzx opened this issue 7 years ago • 0 comments

Code Level Rule Explanation
--- --- - Class ---
VXXX MAJOR -- Added The method doesn't have an implementation anymore. It must be implemented by all class that inherit from it.
VXXX MINOR -- Removed The method may have an implementation. Classes that inherit from it may not need to implement it anymore.
--- --- - Trait ---
VXXX MAJOR -- Added The method doesn't have an implementation anymore. It must be implemented by all class that inherit from it.
VXXX MINOR -- Removed The method may have an implementation. Classes that inherit from it may not need to implement it anymore.

tomzx avatar Feb 15 '18 20:02 tomzx