remove getId()

This commit is contained in:
Dennis Eichhorn 2023-05-30 02:37:06 +02:00
parent c957b183ac
commit d817ab07f4
4 changed files with 0 additions and 47 deletions

View File

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

View File

@ -97,18 +97,6 @@ class TicketAttributeType implements \JsonSerializable
$this->setL11n($name); $this->setL11n($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 TicketAttributeValue 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 value * Set value

View File

@ -70,18 +70,6 @@ class TicketElement implements \JsonSerializable
$this->taskElement = $taskElement ?? new TaskElement(); $this->taskElement = $taskElement ?? new TaskElement();
} }
/**
* Get id
*
* @return int
*
* @since 1.0.0
*/
public function getId() : int
{
return $this->id;
}
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */