summaryrefslogtreecommitdiff
path: root/app/Census/CensusColumnMotherBirthPlaceSimple.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Census/CensusColumnMotherBirthPlaceSimple.php')
-rw-r--r--app/Census/CensusColumnMotherBirthPlaceSimple.php26
1 files changed, 14 insertions, 12 deletions
diff --git a/app/Census/CensusColumnMotherBirthPlaceSimple.php b/app/Census/CensusColumnMotherBirthPlaceSimple.php
index 7e801d2abd..16abf5b185 100644
--- a/app/Census/CensusColumnMotherBirthPlaceSimple.php
+++ b/app/Census/CensusColumnMotherBirthPlaceSimple.php
@@ -21,16 +21,18 @@ use Fisharebest\Webtrees\Individual;
/**
* The individual's mother's birth place.
*/
-class CensusColumnMotherBirthPlaceSimple extends CensusColumnMotherBirthPlace implements CensusColumnInterface {
- /**
- * Generate the likely value of this census column, based on available information.
- *
- * @param Individual $individual
- * @param Individual $head
- *
- * @return string
- */
- public function generate(Individual $individual, Individual $head = null) {
- return $this->lastPartOfPlace(parent::generate($individual, $head));
- }
+class CensusColumnMotherBirthPlaceSimple extends CensusColumnMotherBirthPlace implements CensusColumnInterface
+{
+ /**
+ * Generate the likely value of this census column, based on available information.
+ *
+ * @param Individual $individual
+ * @param Individual $head
+ *
+ * @return string
+ */
+ public function generate(Individual $individual, Individual $head = null)
+ {
+ return $this->lastPartOfPlace(parent::generate($individual, $head));
+ }
}