summaryrefslogtreecommitdiff
path: root/app/Census/AbstractCensusColumn.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@gmail.com>2015-09-25 00:34:06 +0100
committerGreg Roach <fisharebest@gmail.com>2015-09-25 00:34:06 +0100
commit4ccf2a72a960de8375eee0787bc02e7d6dc065eb (patch)
tree3dc783d949e182f97c6402dac719cce50eec566c /app/Census/AbstractCensusColumn.php
parent8935d8b22a5e5406c862167ae485b4035105851b (diff)
downloadwebtrees-4ccf2a72a960de8375eee0787bc02e7d6dc065eb.tar.gz
webtrees-4ccf2a72a960de8375eee0787bc02e7d6dc065eb.tar.bz2
webtrees-4ccf2a72a960de8375eee0787bc02e7d6dc065eb.zip
Start to refactor census assistant
Diffstat (limited to 'app/Census/AbstractCensusColumn.php')
-rw-r--r--app/Census/AbstractCensusColumn.php47
1 files changed, 47 insertions, 0 deletions
diff --git a/app/Census/AbstractCensusColumn.php b/app/Census/AbstractCensusColumn.php
new file mode 100644
index 0000000000..8c6283e819
--- /dev/null
+++ b/app/Census/AbstractCensusColumn.php
@@ -0,0 +1,47 @@
+<?php
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2015 webtrees development team
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+namespace Fisharebest\Webtrees\Census;
+
+use Fisharebest\Webtrees\Date;
+use Fisharebest\Webtrees\Individual;
+use Fisharebest\Webtrees\Place;
+
+/**
+ * Definitions for a census column
+ */
+class AbstractCensusColumn {
+ /** @var Individual - the individual recorded on the census */
+ protected $individul;
+
+ /** @var Place - the place where the census took place */
+ protected $place;
+
+ /** @var Date - the date when the census took place */
+ protected $date;
+
+ /**
+ * Create a census column
+ *
+ * @param Individual $individual
+ * @param Place $place
+ * @param Date $date
+ */
+ public function __construct(Individual $individual, Place $place, Date $date) {
+ $this->individual = $individual;
+ $this->place = $place;
+ $this->date = $date;
+ }
+}