1
0
mirror of https://github.com/jupeter/clean-code-php.git synced 2025-09-25 21:49:04 +02:00

add getters comment

This commit is contained in:
Peter Gribanov
2019-07-23 16:05:10 +03:00
parent eb31d2d2aa
commit 4f11e5324e

View File

@@ -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