diff options
| author | Greg Roach <greg@subaqua.co.uk> | 2020-05-11 01:52:54 +0100 |
|---|---|---|
| committer | Greg Roach <greg@subaqua.co.uk> | 2020-05-12 14:19:35 +0100 |
| commit | bb03c9f048b83092098d5e46c2ab323ae7e2b314 (patch) | |
| tree | 3f07fb7dd518ddb49f1e43b1481b84023c91f674 /app/Contracts/RepositoryFactoryInterface.php | |
| parent | c9a927ce2ba83d295dcf2ac97cc3cbbf3a98a284 (diff) | |
| download | webtrees-bb03c9f048b83092098d5e46c2ab323ae7e2b314.tar.gz webtrees-bb03c9f048b83092098d5e46c2ab323ae7e2b314.tar.bz2 webtrees-bb03c9f048b83092098d5e46c2ab323ae7e2b314.zip | |
Use factory methods to create GEDCOM records
Diffstat (limited to 'app/Contracts/RepositoryFactoryInterface.php')
| -rw-r--r-- | app/Contracts/RepositoryFactoryInterface.php | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/app/Contracts/RepositoryFactoryInterface.php b/app/Contracts/RepositoryFactoryInterface.php new file mode 100644 index 0000000000..ea907c26e6 --- /dev/null +++ b/app/Contracts/RepositoryFactoryInterface.php @@ -0,0 +1,63 @@ +<?php + +/** + * webtrees: online genealogy + * Copyright (C) 2019 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/>. + */ + +declare(strict_types=1); + +namespace Fisharebest\Webtrees\Contracts; + +use Closure; +use Fisharebest\Webtrees\Repository; +use Fisharebest\Webtrees\Tree; + +/** + * Make a Repository object. + */ +interface RepositoryFactoryInterface +{ + /** + * Create a repository. + * + * @param string $xref + * @param Tree $tree + * @param string|null $gedcom + * + * @return Repository|null + */ + public function make(string $xref, Tree $tree, string $gedcom = null): ?Repository; + + /** + * Create a source from a row in the database. + * + * @param Tree $tree + * + * @return Closure + */ + public function mapper(Tree $tree): Closure; + + /** + * Create a source from raw GEDCOM data. + * + * @param string $xref + * @param string $gedcom an empty string for new/pending records + * @param string|null $pending null for a record with no pending edits, + * empty string for records with pending deletions + * @param Tree $tree + * + * @return Repository + */ + public function new(string $xref, string $gedcom, ?string $pending, Tree $tree): Repository; +} |
