From 4f11e5324e709f14868956273e30a981a4c76b66 Mon Sep 17 00:00:00 2001 From: Peter Gribanov Date: Tue, 23 Jul 2019 16:05:10 +0300 Subject: [PATCH] add getters comment --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 82c7233..ed9e37d 100644 --- a/README.md +++ b/README.md @@ -475,6 +475,8 @@ class Name $this->lastname = $lastname; $this->patronymic = $patronymic; } + + // getters ... } class City @@ -489,6 +491,8 @@ class City $this->district = $district; $this->city = $city; } + + // getters ... } class Contact @@ -501,6 +505,8 @@ class Contact $this->phone = $phone; $this->email = $email; } + + // getters ... } class Questionnaire