From f984ca507fdd8ac8aac4f681ab42ca3fd2193559 Mon Sep 17 00:00:00 2001 From: Christoph Michael Becker Date: Sun, 10 Jul 2016 12:30:04 +0000 Subject: [PATCH] Fix #71664: Use of the term "standard class" inaccurately Clarify introduction sentence on creating interfaces with respect to classes -- Provided by anonymous 70720 (d@roscius.ca) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@339625 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/oop5/interfaces.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/language/oop5/interfaces.xml b/language/oop5/interfaces.xml index 9fd9c717f8..8162c8b1ca 100644 --- a/language/oop5/interfaces.xml +++ b/language/oop5/interfaces.xml @@ -8,9 +8,9 @@ handled. - Interfaces are defined using the interface keyword, in the same way as a - standard class, but without any of the methods having their contents - defined. + Interfaces are defined in the same was as a class, but with the interface + keyword replacing the class keyword and without any of the methods having + their contents defined. All methods declared in an interface must be public; this is the nature of an