Patch provided by savdeep singh.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@341919 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Christoph Michael Becker 2017-02-17 18:05:40 +00:00
parent f258d65696
commit 6a8863a5a9

View file

@ -55,7 +55,7 @@ $obj->printHello(); // Shows Public, Protected and Private
*/
class MyClass2 extends MyClass
{
// We can redeclare the public and protected method, but not private
// We can redeclare the public and protected properties, but not private
public $public = 'Public2';
protected $protected = 'Protected2';