Fix #75449: Ignored return type for abstract methods, defined in traits

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@346114 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Christoph Michael Becker 2018-11-28 12:41:43 +00:00
parent a0f95f396f
commit 7ee0da6a02

View file

@ -334,6 +334,12 @@ Hello World!
Traits support the use of abstract methods in order to impose requirements
upon the exhibiting class.
</para>
<caution>
<simpara>
A concrete class fullfills this requirement by defining a concrete method
with the same name; its signature may be different.
</simpara>
</caution>
<example xml:id="language.oop5.traits.abstract.ex1">
<title>Express Requirements by Abstract Methods</title>
<programlisting role="php">