remove getId()

This commit is contained in:
Dennis Eichhorn 2023-05-30 02:37:03 +02:00
parent 9f7b55f4ba
commit 77e1c99fcf
2 changed files with 0 additions and 23 deletions

View File

@ -173,18 +173,6 @@ class NewsArticle implements \JsonSerializable
$this->publish = new \DateTime('now'); $this->publish = new \DateTime('now');
} }
/**
* Get id
*
* @return int
*
* @since 1.0.0
*/
public function getId() : int
{
return $this->id;
}
/** /**
* Get news language * Get news language
* *

View File

@ -48,15 +48,4 @@ class NewsSeen
$this->seenAt = new \DateTime('now'); $this->seenAt = new \DateTime('now');
} }
/**
* Get id
*
* @return int
*
* @since 1.0.0
*/
public function getId() : int
{
return $this->id;
}
} }