mirror of
https://github.com/Karaka-Management/oms-Organization.git
synced 2026-02-15 15:58:40 +00:00
Models cannot be final because of NullModels
This commit is contained in:
parent
a219c9919b
commit
800f35cc49
|
|
@ -24,7 +24,7 @@ use phpOMS\Contract\ArrayableInterface;
|
||||||
* @link http://website.orange-management.de
|
* @link http://website.orange-management.de
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
final class Department implements ArrayableInterface, \JsonSerializable
|
class Department implements ArrayableInterface, \JsonSerializable
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Article ID.
|
* Article ID.
|
||||||
|
|
|
||||||
|
|
@ -22,6 +22,6 @@ namespace Modules\Organization\Models;
|
||||||
* @link http://website.orange-management.de
|
* @link http://website.orange-management.de
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
final class NullDepartment extends Department
|
class NullDepartment extends Department
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -22,6 +22,6 @@ namespace Modules\Organization\Models;
|
||||||
* @link http://website.orange-management.de
|
* @link http://website.orange-management.de
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
final class NullPosition extends Position
|
class NullPosition extends Position
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -22,6 +22,6 @@ namespace Modules\Organization\Models;
|
||||||
* @link http://website.orange-management.de
|
* @link http://website.orange-management.de
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
final class NullUnit extends Unit
|
class NullUnit extends Unit
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@ use phpOMS\Contract\ArrayableInterface;
|
||||||
* @link http://website.orange-management.de
|
* @link http://website.orange-management.de
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
final class Position implements ArrayableInterface, \JsonSerializable
|
class Position implements ArrayableInterface, \JsonSerializable
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Article ID.
|
* Article ID.
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@ use phpOMS\Contract\ArrayableInterface;
|
||||||
* @link http://website.orange-management.de
|
* @link http://website.orange-management.de
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
final class Unit implements ArrayableInterface, \JsonSerializable
|
class Unit implements ArrayableInterface, \JsonSerializable
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Article ID.
|
* Article ID.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user