remove getId()

This commit is contained in:
Dennis Eichhorn 2023-05-30 02:37:04 +02:00
parent 5ec93c12db
commit e8471c7846
3 changed files with 0 additions and 36 deletions

View File

@ -94,18 +94,6 @@ class Department implements \JsonSerializable
$this->unit = new NullUnit();
}
/**
* Get id
*
* @return int
*
* @since 1.0.0
*/
public function getId() : int
{
return $this->id;
}
/**
* Get status
*

View File

@ -91,18 +91,6 @@ class Position implements \JsonSerializable
$this->department = new NullDepartment();
}
/**
* Get id
*
* @return int
*
* @since 1.0.0
*/
public function getId() : int
{
return $this->id;
}
/**
* Get status
*

View File

@ -101,18 +101,6 @@ class Unit implements \JsonSerializable
$this->mainAddress = new NullAddress();
}
/**
* Get id
*
* @return int
*
* @since 1.0.0
*/
public function getId() : int
{
return $this->id;
}
/**
* Get status
*