. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Contracts; use Closure; use Fisharebest\Webtrees\Submission; use Fisharebest\Webtrees\Tree; /** * Make a Submission object. */ interface SubmissionFactoryInterface extends GedcomRecordFactoryInterface { /** * Create a submission. * * @param string $xref * @param Tree $tree * @param string|null $gedcom * * @return Submission|null */ public function make(string $xref, Tree $tree, string $gedcom = null): ?Submission; /** * Create a submission from a row in the database. * * @param Tree $tree * * @return Closure(object):Submission */ public function mapper(Tree $tree): Closure; /** * Create a submission 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 Submission */ public function new(string $xref, string $gedcom, ?string $pending, Tree $tree): Submission; }