remove getId()

This commit is contained in:
Dennis Eichhorn 2023-05-30 02:37:07 +02:00
parent 54c89d2769
commit 4beb0be17e
6 changed files with 0 additions and 70 deletions

View File

@ -231,18 +231,6 @@ class Task implements \JsonSerializable
$this->due->modify('+1 day'); $this->due->modify('+1 day');
} }
/**
* Get id
*
* @return int
*
* @since 1.0.0
*/
public function getId() : int
{
return $this->id;
}
/** /**
* Adding new task element. * Adding new task element.
* *

View File

@ -67,18 +67,6 @@ class TaskAttribute implements \JsonSerializable
$this->value = new NullTaskAttributeValue(); $this->value = new NullTaskAttributeValue();
} }
/**
* Get id
*
* @return int
*
* @since 1.0.0
*/
public function getId() : int
{
return $this->id;
}
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */

View File

@ -105,18 +105,6 @@ class TaskAttributeType implements \JsonSerializable
$this->name = $name; $this->name = $name;
} }
/**
* Get id
*
* @return int
*
* @since 1.0.0
*/
public function getId() : int
{
return $this->id;
}
/** /**
* Set l11n * Set l11n
* *

View File

@ -108,17 +108,6 @@ class TaskAttributeValue implements \JsonSerializable
*/ */
private ?BaseStringL11n $l11n = null; private ?BaseStringL11n $l11n = null;
/**
* Get id
*
* @return int
*
* @since 1.0.0
*/
public function getId() : int
{
return $this->id;
}
/** /**
* Set l11n * Set l11n

View File

@ -139,18 +139,6 @@ class TaskElement implements \JsonSerializable
$this->createdBy = new NullAccount(); $this->createdBy = new NullAccount();
} }
/**
* Get id
*
* @return int
*
* @since 1.0.0
*/
public function getId() : int
{
return $this->id;
}
/** /**
* Get all media * Get all media
* *

View File

@ -56,15 +56,4 @@ class TaskSeen
$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;
}
} }