summaryrefslogtreecommitdiff
path: root/app/Controller/DescendancyController.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Controller/DescendancyController.php')
-rw-r--r--app/Controller/DescendancyController.php9
1 files changed, 5 insertions, 4 deletions
diff --git a/app/Controller/DescendancyController.php b/app/Controller/DescendancyController.php
index d2bfe2424a..7071be6158 100644
--- a/app/Controller/DescendancyController.php
+++ b/app/Controller/DescendancyController.php
@@ -1,6 +1,4 @@
<?php
-namespace Fisharebest\Webtrees\Controller;
-
/**
* webtrees: online genealogy
* Copyright (C) 2015 webtrees development team
@@ -15,6 +13,7 @@ namespace Fisharebest\Webtrees\Controller;
* 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\Controller;
use Fisharebest\Webtrees\Family;
use Fisharebest\Webtrees\Filter;
@@ -27,7 +26,7 @@ use Fisharebest\Webtrees\Theme;
use Rhumsaa\Uuid\Uuid;
/**
- * Class DescendancyController - Controller for the descendancy chart
+ * Controller for the descendancy chart
*/
class DescendancyController extends ChartController {
/** @var int Show boxes for cousins */
@@ -39,8 +38,10 @@ class DescendancyController extends ChartController {
/** @var int Number of generations to display */
public $generations;
- // d'Aboville numbering system [ http://www.saintclair.org/numbers/numdob.html ]
+ /** @var array d'Aboville numbering system <http://www.saintclair.org/numbers/numdob.html> */
public $dabo_num = array();
+
+ /** @var array d'Aboville numbering system <http://www.saintclair.org/numbers/numdob.html> */
public $dabo_sex = array();
/**