mirror of
https://github.com/jupeter/clean-code-php.git
synced 2025-09-26 14:08:59 +02:00
add getters comment
This commit is contained in:
@@ -475,6 +475,8 @@ class Name
|
|||||||
$this->lastname = $lastname;
|
$this->lastname = $lastname;
|
||||||
$this->patronymic = $patronymic;
|
$this->patronymic = $patronymic;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// getters ...
|
||||||
}
|
}
|
||||||
|
|
||||||
class City
|
class City
|
||||||
@@ -489,6 +491,8 @@ class City
|
|||||||
$this->district = $district;
|
$this->district = $district;
|
||||||
$this->city = $city;
|
$this->city = $city;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// getters ...
|
||||||
}
|
}
|
||||||
|
|
||||||
class Contact
|
class Contact
|
||||||
@@ -501,6 +505,8 @@ class Contact
|
|||||||
$this->phone = $phone;
|
$this->phone = $phone;
|
||||||
$this->email = $email;
|
$this->email = $email;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// getters ...
|
||||||
}
|
}
|
||||||
|
|
||||||
class Questionnaire
|
class Questionnaire
|
||||||
|
Reference in New Issue
Block a user