mirror of
https://github.com/Karaka-Management/oms-HumanResourceManagement.git
synced 2026-02-15 04:18:39 +00:00
Remove namespace from scalars
This commit is contained in:
parent
1252c785eb
commit
acb3b0f814
|
|
@ -43,7 +43,7 @@ class Controller extends ModuleAbstract implements WebInterface
|
||||||
/**
|
/**
|
||||||
* Module path.
|
* Module path.
|
||||||
*
|
*
|
||||||
* @var \string
|
* @var string
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
const MODULE_PATH = __DIR__;
|
const MODULE_PATH = __DIR__;
|
||||||
|
|
@ -51,7 +51,7 @@ class Controller extends ModuleAbstract implements WebInterface
|
||||||
/**
|
/**
|
||||||
* Module version.
|
* Module version.
|
||||||
*
|
*
|
||||||
* @var \string
|
* @var string
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
const MODULE_VERSION = '1.0.0';
|
const MODULE_VERSION = '1.0.0';
|
||||||
|
|
@ -59,7 +59,7 @@ class Controller extends ModuleAbstract implements WebInterface
|
||||||
/**
|
/**
|
||||||
* Module name.
|
* Module name.
|
||||||
*
|
*
|
||||||
* @var \string
|
* @var string
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
const MODULE_NAME = 'HumanResourceManagement';
|
const MODULE_NAME = 'HumanResourceManagement';
|
||||||
|
|
@ -67,7 +67,7 @@ class Controller extends ModuleAbstract implements WebInterface
|
||||||
/**
|
/**
|
||||||
* Localization files.
|
* Localization files.
|
||||||
*
|
*
|
||||||
* @var \string
|
* @var string
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
protected static $localization = [
|
protected static $localization = [
|
||||||
|
|
@ -77,7 +77,7 @@ class Controller extends ModuleAbstract implements WebInterface
|
||||||
/**
|
/**
|
||||||
* Providing.
|
* Providing.
|
||||||
*
|
*
|
||||||
* @var \string
|
* @var string
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
protected static $providing = [];
|
protected static $providing = [];
|
||||||
|
|
@ -85,7 +85,7 @@ class Controller extends ModuleAbstract implements WebInterface
|
||||||
/**
|
/**
|
||||||
* Dependencies.
|
* Dependencies.
|
||||||
*
|
*
|
||||||
* @var \string
|
* @var string
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
protected static $dependencies = [
|
protected static $dependencies = [
|
||||||
|
|
@ -170,7 +170,7 @@ class Controller extends ModuleAbstract implements WebInterface
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||||
*/
|
*/
|
||||||
private function createNavigation(\int $pageId, RequestAbstract $request, ResponseAbstract $response)
|
private function createNavigation(int $pageId, RequestAbstract $request, ResponseAbstract $response)
|
||||||
{
|
{
|
||||||
$nav = Navigation::getInstance($request, $this->app->dbPool);
|
$nav = Navigation::getInstance($request, $this->app->dbPool);
|
||||||
$navView = new NavigationView($this->app, $request, $response);
|
$navView = new NavigationView($this->app, $request, $response);
|
||||||
|
|
|
||||||
|
|
@ -58,8 +58,8 @@ class DepartmentList
|
||||||
* This function gets all accounts in a range
|
* This function gets all accounts in a range
|
||||||
*
|
*
|
||||||
* @param array $filter Filter for search results
|
* @param array $filter Filter for search results
|
||||||
* @param \int $offset Offset for first account
|
* @param int $offset Offset for first account
|
||||||
* @param \int $limit Limit for results
|
* @param int $limit Limit for results
|
||||||
*
|
*
|
||||||
* @return array
|
* @return array
|
||||||
*
|
*
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@ class Employee implements Multition
|
||||||
/**
|
/**
|
||||||
* Employee ID.
|
* Employee ID.
|
||||||
*
|
*
|
||||||
* @var \int
|
* @var int
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
private $id = null;
|
private $id = null;
|
||||||
|
|
|
||||||
|
|
@ -58,8 +58,8 @@ class StaffList
|
||||||
* This function gets all accounts in a range
|
* This function gets all accounts in a range
|
||||||
*
|
*
|
||||||
* @param array $filter Filter for search results
|
* @param array $filter Filter for search results
|
||||||
* @param \int $offset Offset for first account
|
* @param int $offset Offset for first account
|
||||||
* @param \int $limit Limit for results
|
* @param int $limit Limit for results
|
||||||
*
|
*
|
||||||
* @return array
|
* @return array
|
||||||
*
|
*
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user