Skip to content

Commit

Permalink
Merge pull request #39 from JoshKisb/main
Browse files Browse the repository at this point in the history
Bugfixes and cleanup
  • Loading branch information
curtisdelicata authored May 11, 2024
2 parents d0afa70 + 421741c commit f0b5110
Show file tree
Hide file tree
Showing 15 changed files with 728 additions and 777 deletions.
557 changes: 294 additions & 263 deletions composer.lock

Large diffs are not rendered by default.

45 changes: 24 additions & 21 deletions src/Models/RecordInterface.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php
<?php

namespace Gedcom\Models;

Expand All @@ -10,28 +10,31 @@
*/
interface RecordInterface
{
/**
* Retrieves the ID of the record.
*
* @return mixed The ID of the record.
*/
public function getId();

/**
* Sets the ID of the record.
*
* @param mixed $id The new ID of the record.
*/
public function setId($id);

/**
* Retrieves the name of the record.
*
* @return string The name of the record.
*/
public function getName();

/**
* Sets the name of the record.
*
* @param string $name The new name of the record.
*/
public function setName($name);
}
/**
* Retrieves the ID of the record.
*
* @return mixed The ID of the record.
*/
/**
* Sets the ID of the record.
*
* @param mixed $id The new ID of the record.
*/
/**
* Retrieves the name of the record.
*
* @return string The name of the record.
*/
/**
* Sets the name of the record.
*
* @param string $name The new name of the record.
*/
Loading

0 comments on commit f0b5110

Please sign in to comment.