Make null models final

This commit is contained in:
Dennis Eichhorn 2019-10-05 20:08:29 +02:00
parent d48447c73a
commit a81bb1ce4c
2 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.4 * PHP Version 7.4
* *
* @package Modules\News\Models * @package Modules\HumanResourceManagement\Models
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -22,6 +22,6 @@ namespace Modules\HumanResourceManagement\Models;
* @link https://orange-management.org * @link https://orange-management.org
* @since 1.0.0 * @since 1.0.0
*/ */
class NullEmployee extends Employee final class NullEmployee extends Employee
{ {
} }

View File

@ -22,6 +22,6 @@ namespace Modules\HumanResourceManagement\Models;
* @link https://orange-management.org * @link https://orange-management.org
* @since 1.0.0 * @since 1.0.0
*/ */
class NullEmployeeHistory extends EmployeeHistory final class NullEmployeeHistory extends EmployeeHistory
{ {
} }