Fix #78464: Abstract may not or cannot be instantiated?

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@347912 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Christoph Michael Becker 2019-09-01 09:25:34 +00:00
parent 88c8421cbe
commit 9b5b5b7285

View file

@ -5,7 +5,7 @@
<para>
PHP 5 introduces abstract classes and methods. Classes defined as
abstract may not be instantiated, and any class that
abstract cannot be instantiated, and any class that
contains at least one abstract method must also be abstract. Methods
defined as abstract simply declare the method's signature - they cannot
define the implementation.