diff options
| author | Greg Roach <fisharebest@gmail.com> | 2015-06-08 15:09:08 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2015-06-08 21:42:34 +0100 |
| commit | 76692c8b291f16d9251d67f27078779f6737fe7e (patch) | |
| tree | d92ba170d781d60d4fcff107d5a46bad5bdbce4f /app/GedcomCode | |
| parent | 238d6f46440eb68ffb982a7af1ec9dd37c8e75d7 (diff) | |
| download | webtrees-76692c8b291f16d9251d67f27078779f6737fe7e.tar.gz webtrees-76692c8b291f16d9251d67f27078779f6737fe7e.tar.bz2 webtrees-76692c8b291f16d9251d67f27078779f6737fe7e.zip | |
PHPDoc
Diffstat (limited to 'app/GedcomCode')
| -rw-r--r-- | app/GedcomCode/GedcomCodeAdop.php | 6 | ||||
| -rw-r--r-- | app/GedcomCode/GedcomCodeName.php | 4 | ||||
| -rw-r--r-- | app/GedcomCode/GedcomCodePedi.php | 4 | ||||
| -rw-r--r-- | app/GedcomCode/GedcomCodeQuay.php | 5 | ||||
| -rw-r--r-- | app/GedcomCode/GedcomCodeRela.php | 4 | ||||
| -rw-r--r-- | app/GedcomCode/GedcomCodeStat.php | 4 | ||||
| -rw-r--r-- | app/GedcomCode/GedcomCodeTemp.php | 4 |
7 files changed, 16 insertions, 15 deletions
diff --git a/app/GedcomCode/GedcomCodeAdop.php b/app/GedcomCode/GedcomCodeAdop.php index cf4a72d41a..af4fe5fa74 100644 --- a/app/GedcomCode/GedcomCodeAdop.php +++ b/app/GedcomCode/GedcomCodeAdop.php @@ -1,6 +1,4 @@ <?php -namespace Fisharebest\Webtrees\GedcomCode; - /** * webtrees: online genealogy * Copyright (C) 2015 webtrees development team @@ -15,6 +13,8 @@ namespace Fisharebest\Webtrees\GedcomCode; * 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\GedcomCode; + use Fisharebest\Webtrees\GedcomRecord; use Fisharebest\Webtrees\I18N; use Fisharebest\Webtrees\Individual; @@ -77,7 +77,7 @@ class GedcomCodeAdop { /** * A list of all possible values for PEDI * - * @param null GedcomRecord|null $record + * @param GedcomRecord|null $record * * @return string[] */ diff --git a/app/GedcomCode/GedcomCodeName.php b/app/GedcomCode/GedcomCodeName.php index 3ae6c8b760..62dcc1859b 100644 --- a/app/GedcomCode/GedcomCodeName.php +++ b/app/GedcomCode/GedcomCodeName.php @@ -1,6 +1,4 @@ <?php -namespace Fisharebest\Webtrees\GedcomCode; - /** * webtrees: online genealogy * Copyright (C) 2015 webtrees development team @@ -15,6 +13,8 @@ namespace Fisharebest\Webtrees\GedcomCode; * 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\GedcomCode; + use Fisharebest\Webtrees\GedcomRecord; use Fisharebest\Webtrees\I18N; use Fisharebest\Webtrees\Individual; diff --git a/app/GedcomCode/GedcomCodePedi.php b/app/GedcomCode/GedcomCodePedi.php index 71614fb354..3f20c708f0 100644 --- a/app/GedcomCode/GedcomCodePedi.php +++ b/app/GedcomCode/GedcomCodePedi.php @@ -1,6 +1,4 @@ <?php -namespace Fisharebest\Webtrees\GedcomCode; - /** * webtrees: online genealogy * Copyright (C) 2015 webtrees development team @@ -15,6 +13,8 @@ namespace Fisharebest\Webtrees\GedcomCode; * 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\GedcomCode; + use Fisharebest\Webtrees\GedcomRecord; use Fisharebest\Webtrees\I18N; use Fisharebest\Webtrees\Individual; diff --git a/app/GedcomCode/GedcomCodeQuay.php b/app/GedcomCode/GedcomCodeQuay.php index 3b71b7b6e5..b6841caf0a 100644 --- a/app/GedcomCode/GedcomCodeQuay.php +++ b/app/GedcomCode/GedcomCodeQuay.php @@ -1,6 +1,4 @@ <?php -namespace Fisharebest\Webtrees\GedcomCode; - /** * webtrees: online genealogy * Copyright (C) 2015 webtrees development team @@ -15,12 +13,15 @@ namespace Fisharebest\Webtrees\GedcomCode; * 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\GedcomCode; + use Fisharebest\Webtrees\I18N; /** * Class GedcomCodeQuay - Functions and logic for GEDCOM "QUAY" codes */ class GedcomCodeQuay { + /** @var string[] Valid values for a QUAY tag. */ private static $TYPES = array('3', '2', '1', '0'); /** diff --git a/app/GedcomCode/GedcomCodeRela.php b/app/GedcomCode/GedcomCodeRela.php index 0b2ffa76f9..3e9abe30ca 100644 --- a/app/GedcomCode/GedcomCodeRela.php +++ b/app/GedcomCode/GedcomCodeRela.php @@ -1,6 +1,4 @@ <?php -namespace Fisharebest\Webtrees\GedcomCode; - /** * webtrees: online genealogy * Copyright (C) 2015 webtrees development team @@ -15,6 +13,8 @@ namespace Fisharebest\Webtrees\GedcomCode; * 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\GedcomCode; + use Fisharebest\Webtrees\GedcomRecord; use Fisharebest\Webtrees\I18N; use Fisharebest\Webtrees\Individual; diff --git a/app/GedcomCode/GedcomCodeStat.php b/app/GedcomCode/GedcomCodeStat.php index 888ea34943..2be312830f 100644 --- a/app/GedcomCode/GedcomCodeStat.php +++ b/app/GedcomCode/GedcomCodeStat.php @@ -1,6 +1,4 @@ <?php -namespace Fisharebest\Webtrees\GedcomCode; - /** * webtrees: online genealogy * Copyright (C) 2015 webtrees development team @@ -15,6 +13,8 @@ namespace Fisharebest\Webtrees\GedcomCode; * 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\GedcomCode; + use Fisharebest\Webtrees\I18N; /** diff --git a/app/GedcomCode/GedcomCodeTemp.php b/app/GedcomCode/GedcomCodeTemp.php index 9588d0125f..753392f10f 100644 --- a/app/GedcomCode/GedcomCodeTemp.php +++ b/app/GedcomCode/GedcomCodeTemp.php @@ -1,6 +1,4 @@ <?php -namespace Fisharebest\Webtrees\GedcomCode; - /** * webtrees: online genealogy * Copyright (C) 2015 webtrees development team @@ -15,6 +13,8 @@ namespace Fisharebest\Webtrees\GedcomCode; * 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\GedcomCode; + use Fisharebest\Webtrees\I18N; /** |
