summaryrefslogtreecommitdiff
path: root/app/Census
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@gmail.com>2016-02-27 18:18:15 +0000
committerGreg Roach <fisharebest@gmail.com>2016-02-27 18:18:15 +0000
commitf6a7e2acff32e68a750135c2c3ac2ed7532e32ac (patch)
treee7be324e449283c757377433f48624c470ac17f9 /app/Census
parent35326bd6230f3ece56a851fa74c972851dce38eb (diff)
downloadwebtrees-f6a7e2acff32e68a750135c2c3ac2ed7532e32ac.tar.gz
webtrees-f6a7e2acff32e68a750135c2c3ac2ed7532e32ac.tar.bz2
webtrees-f6a7e2acff32e68a750135c2c3ac2ed7532e32ac.zip
Unused use
Diffstat (limited to 'app/Census')
-rw-r--r--app/Census/CensusColumnConditionDanish.php2
-rw-r--r--app/Census/CensusColumnConditionUs.php2
-rw-r--r--app/Census/CensusColumnSexMK.php5
-rw-r--r--app/Census/CensusColumnSexMZ.php5
4 files changed, 0 insertions, 14 deletions
diff --git a/app/Census/CensusColumnConditionDanish.php b/app/Census/CensusColumnConditionDanish.php
index 1ccff83e08..65da0b69dc 100644
--- a/app/Census/CensusColumnConditionDanish.php
+++ b/app/Census/CensusColumnConditionDanish.php
@@ -15,8 +15,6 @@
*/
namespace Fisharebest\Webtrees\Census;
-use Fisharebest\Webtrees\Individual;
-
/**
* Marital status.
*/
diff --git a/app/Census/CensusColumnConditionUs.php b/app/Census/CensusColumnConditionUs.php
index 7a20b1c3a0..76d1b5744c 100644
--- a/app/Census/CensusColumnConditionUs.php
+++ b/app/Census/CensusColumnConditionUs.php
@@ -15,8 +15,6 @@
*/
namespace Fisharebest\Webtrees\Census;
-use Fisharebest\Webtrees\Individual;
-
/**
* Marital status.
*/
diff --git a/app/Census/CensusColumnSexMK.php b/app/Census/CensusColumnSexMK.php
index a4660b1dee..f205839aae 100644
--- a/app/Census/CensusColumnSexMK.php
+++ b/app/Census/CensusColumnSexMK.php
@@ -15,15 +15,10 @@
*/
namespace Fisharebest\Webtrees\Census;
-use Fisharebest\Webtrees\Individual;
-
/**
* The individual's sex.
*/
class CensusColumnSexMK extends CensusColumnSexMF {
- /* Text to display for male individuals */
- protected $male = 'M';
-
/* Text to display for female individuals */
protected $female = 'K';
}
diff --git a/app/Census/CensusColumnSexMZ.php b/app/Census/CensusColumnSexMZ.php
index a9471447d5..1a86ba3052 100644
--- a/app/Census/CensusColumnSexMZ.php
+++ b/app/Census/CensusColumnSexMZ.php
@@ -15,15 +15,10 @@
*/
namespace Fisharebest\Webtrees\Census;
-use Fisharebest\Webtrees\Individual;
-
/**
* The individual's sex.
*/
class CensusColumnSexMZ extends CensusColumnSexMF {
- /* Text to display for male individuals */
- protected $male = 'M';
-
/* Text to display for female individuals */
protected $female = 'Ž';
}