4.2.14. Remove Abstract

Remove the abstract option, from classes and methods.

4.2.14.1. Before

<?php
abstract class x {
    function foo() {}

    abstract function moo() ;
}
?>

4.2.14.2. After

<?php
class x {
    function foo() {}

    function moo() {}
}
?>

4.2.14.3. Specs

Short Name

Classes/RemoveAbstract

Exakat version

2.3.0

Available in

Entreprise Edition, Exakat Cloud