mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 01:38:41 +00:00
Remove @author docblock
This commit is contained in:
parent
d428dbdd04
commit
ff3d253588
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -28,7 +27,6 @@ use phpOMS\Validation\Base\Email;
|
|||
* @category Framework
|
||||
* @package phpOMS\Account
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -164,7 +162,6 @@ class Account implements ArrayableInterface, \JsonSerializable
|
|||
* @param int $id Account id
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function __construct(int $id = 0)
|
||||
{
|
||||
|
|
@ -180,7 +177,6 @@ class Account implements ArrayableInterface, \JsonSerializable
|
|||
* @return int Account id
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getId() : int
|
||||
{
|
||||
|
|
@ -193,7 +189,6 @@ class Account implements ArrayableInterface, \JsonSerializable
|
|||
* @return Localization
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getL11n() : Localization
|
||||
{
|
||||
|
|
@ -208,7 +203,6 @@ class Account implements ArrayableInterface, \JsonSerializable
|
|||
* @return void
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function setL11n(Localization $l11n) /* : void */
|
||||
{
|
||||
|
|
@ -221,7 +215,6 @@ class Account implements ArrayableInterface, \JsonSerializable
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getName() : string
|
||||
{
|
||||
|
|
@ -234,7 +227,6 @@ class Account implements ArrayableInterface, \JsonSerializable
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getName1() : string
|
||||
{
|
||||
|
|
@ -247,7 +239,6 @@ class Account implements ArrayableInterface, \JsonSerializable
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getName2() : string
|
||||
{
|
||||
|
|
@ -260,7 +251,6 @@ class Account implements ArrayableInterface, \JsonSerializable
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getName3() : string
|
||||
{
|
||||
|
|
@ -273,7 +263,6 @@ class Account implements ArrayableInterface, \JsonSerializable
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getEmail() : string
|
||||
{
|
||||
|
|
@ -288,7 +277,6 @@ class Account implements ArrayableInterface, \JsonSerializable
|
|||
* @return int
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getStatus() : int
|
||||
{
|
||||
|
|
@ -303,7 +291,6 @@ class Account implements ArrayableInterface, \JsonSerializable
|
|||
* @return int
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getType() : int
|
||||
{
|
||||
|
|
@ -316,7 +303,6 @@ class Account implements ArrayableInterface, \JsonSerializable
|
|||
* @return \DateTime
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getLastActive() : \DateTime
|
||||
{
|
||||
|
|
@ -329,7 +315,6 @@ class Account implements ArrayableInterface, \JsonSerializable
|
|||
* @return \DateTime
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getCreatedAt() : \DateTime
|
||||
{
|
||||
|
|
@ -344,7 +329,6 @@ class Account implements ArrayableInterface, \JsonSerializable
|
|||
* @return void
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function generatePassword(string $password) /* : void */
|
||||
{
|
||||
|
|
@ -359,7 +343,6 @@ class Account implements ArrayableInterface, \JsonSerializable
|
|||
* @return void
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function setName(string $name) /* : void */
|
||||
{
|
||||
|
|
@ -374,7 +357,6 @@ class Account implements ArrayableInterface, \JsonSerializable
|
|||
* @return void
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function setName1(string $name) /* : void */
|
||||
{
|
||||
|
|
@ -389,7 +371,6 @@ class Account implements ArrayableInterface, \JsonSerializable
|
|||
* @return void
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function setName2(string $name) /* : void */
|
||||
{
|
||||
|
|
@ -404,7 +385,6 @@ class Account implements ArrayableInterface, \JsonSerializable
|
|||
* @return void
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function setName3(string $name) /* : void */
|
||||
{
|
||||
|
|
@ -419,7 +399,6 @@ class Account implements ArrayableInterface, \JsonSerializable
|
|||
* @return void
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function setEmail(string $email) /* : void */
|
||||
{
|
||||
|
|
@ -438,7 +417,6 @@ class Account implements ArrayableInterface, \JsonSerializable
|
|||
* @return void
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function setStatus(int $status) /* : void */
|
||||
{
|
||||
|
|
@ -457,7 +435,6 @@ class Account implements ArrayableInterface, \JsonSerializable
|
|||
* @return void
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function setType(int $type) /* : void */
|
||||
{
|
||||
|
|
@ -474,7 +451,6 @@ class Account implements ArrayableInterface, \JsonSerializable
|
|||
* @return void
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function updateLastActive()
|
||||
{
|
||||
|
|
@ -508,7 +484,6 @@ class Account implements ArrayableInterface, \JsonSerializable
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function __toString()
|
||||
{
|
||||
|
|
@ -521,7 +496,6 @@ class Account implements ArrayableInterface, \JsonSerializable
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function jsonSerialize()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -27,7 +26,6 @@ use phpOMS\DataStorage\Session\SessionInterface;
|
|||
* @category Framework
|
||||
* @package phpOMS\Account
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -74,7 +72,6 @@ class AccountManager implements \Countable
|
|||
* @param SessionInterface $session Session
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function __construct(ConnectionAbstract $connection, SessionInterface $session)
|
||||
{
|
||||
|
|
@ -91,7 +88,6 @@ class AccountManager implements \Countable
|
|||
* @return Account
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function get(int $id = 0) : Account
|
||||
{
|
||||
|
|
@ -116,7 +112,6 @@ class AccountManager implements \Countable
|
|||
* @return bool
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function add(Account $account) : bool
|
||||
{
|
||||
|
|
@ -137,7 +132,6 @@ class AccountManager implements \Countable
|
|||
* @return bool
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function remove(int $id) : bool
|
||||
{
|
||||
|
|
@ -156,7 +150,6 @@ class AccountManager implements \Countable
|
|||
* @return int
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function count() : int
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum;
|
|||
* @category Framework
|
||||
* @package phpOMS\Account
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Database
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -25,7 +24,6 @@ use phpOMS\Contract\ArrayableInterface;
|
|||
* @category Framework
|
||||
* @package phpOMS\Account
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -109,7 +107,6 @@ class Group implements ArrayableInterface, \JsonSerializable
|
|||
* Constructor.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
|
|
@ -122,7 +119,6 @@ class Group implements ArrayableInterface, \JsonSerializable
|
|||
* @return int
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getId() : int
|
||||
{
|
||||
|
|
@ -135,7 +131,6 @@ class Group implements ArrayableInterface, \JsonSerializable
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getName() : string
|
||||
{
|
||||
|
|
@ -148,7 +143,6 @@ class Group implements ArrayableInterface, \JsonSerializable
|
|||
* @param string $name Group name
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function setName(string $name) /* : void */
|
||||
{
|
||||
|
|
@ -161,7 +155,6 @@ class Group implements ArrayableInterface, \JsonSerializable
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getDescription() : string
|
||||
{
|
||||
|
|
@ -174,7 +167,6 @@ class Group implements ArrayableInterface, \JsonSerializable
|
|||
* @param string $description Group description
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function setDescription(string $description) /* : void */
|
||||
{
|
||||
|
|
@ -187,7 +179,6 @@ class Group implements ArrayableInterface, \JsonSerializable
|
|||
* @return int Group status
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getStatus() : int
|
||||
{
|
||||
|
|
@ -200,7 +191,6 @@ class Group implements ArrayableInterface, \JsonSerializable
|
|||
* @param int $status Group status
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function setStatus(int $status) /* : void */
|
||||
{
|
||||
|
|
@ -214,7 +204,6 @@ class Group implements ArrayableInterface, \JsonSerializable
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function __toString()
|
||||
{
|
||||
|
|
@ -227,7 +216,6 @@ class Group implements ArrayableInterface, \JsonSerializable
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function jsonSerialize()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum;
|
|||
* @category Calendar
|
||||
* @package Modules
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -23,7 +22,6 @@ namespace phpOMS\Account;
|
|||
* @category Framework
|
||||
* @package phpOMS\Account
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum;
|
|||
* @category Tasks
|
||||
* @package Modules
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -24,7 +23,6 @@ use phpOMS\Algorithm\AlgorithmType;
|
|||
* @category Framework
|
||||
* @package phpOMS\Auth
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -23,7 +22,6 @@ namespace phpOMS\Algorithm\Knappsack;
|
|||
* @category Framework
|
||||
* @package phpOMS\Math
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -23,7 +22,6 @@ namespace phpOMS;
|
|||
* @category Framework
|
||||
* @package Framework
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -23,7 +22,6 @@ namespace phpOMS\Asset;
|
|||
* @category Framework
|
||||
* @package phpOMS\Asset
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -43,7 +41,6 @@ class AssetManager implements \Countable
|
|||
* Constructor.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
|
|
@ -59,7 +56,6 @@ class AssetManager implements \Countable
|
|||
* @return bool
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function set(string $id, string $asset, bool $overwrite = true) : bool
|
||||
{
|
||||
|
|
@ -80,7 +76,6 @@ class AssetManager implements \Countable
|
|||
* @return bool
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function remove(string $id) : bool
|
||||
{
|
||||
|
|
@ -101,7 +96,6 @@ class AssetManager implements \Countable
|
|||
* @return mixed Asset
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function get(string $id) /* : ?string */
|
||||
{
|
||||
|
|
@ -118,7 +112,6 @@ class AssetManager implements \Countable
|
|||
* @return int
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function count() : int
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum;
|
|||
* @category Framework
|
||||
* @package phpOMS\Asset
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -29,7 +28,6 @@ use phpOMS\DataStorage\Session\SessionInterface;
|
|||
* @category Framework
|
||||
* @package phpOMS\Auth
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -59,7 +57,6 @@ class Auth
|
|||
* @param SessionInterface $session Session
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function __construct(ConnectionAbstract $connection, SessionInterface $session)
|
||||
{
|
||||
|
|
@ -73,7 +70,6 @@ class Auth
|
|||
* @return int
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function authenticate() : int
|
||||
{
|
||||
|
|
@ -94,7 +90,6 @@ class Auth
|
|||
* @return void
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function logout(int $uid = null) /* : void */
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -27,7 +26,6 @@ use phpOMS\Datatypes\Enum;
|
|||
* @category Framework
|
||||
* @package phpOMS\Auth
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -23,7 +22,6 @@ namespace phpOMS;
|
|||
* @category Framework
|
||||
* @package phpOMS\System\File
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -38,7 +36,6 @@ class AutoloadException extends \RuntimeException
|
|||
* @param \Exception Previous exception
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function __construct(string $message, int $code = 0, \Exception $previous = null)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -25,7 +24,6 @@ spl_autoload_register('\phpOMS\Autoloader::default_autoloader');
|
|||
* @category Framework
|
||||
* @package Framework
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -45,7 +43,6 @@ class Autoloader
|
|||
* @throws AutoloadException Throws this exception if the class to autoload doesn't exist. This could also be related to a wrong namespace/file path correlation.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function default_autoloader(string $class) /* : void */
|
||||
{
|
||||
|
|
@ -70,7 +67,6 @@ class Autoloader
|
|||
* @return bool
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function exists(string $class) : bool
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -23,7 +22,6 @@ namespace phpOMS\Business\Marketing;
|
|||
* @category Framework
|
||||
* @package phpOMS\Business
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -41,7 +39,6 @@ class NetPromoterScore {
|
|||
* Constructor.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function __construct() {
|
||||
|
||||
|
|
@ -55,7 +52,6 @@ class NetPromoterScore {
|
|||
* @return void
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function add(int $score) /* : void */
|
||||
{
|
||||
|
|
@ -68,7 +64,6 @@ class NetPromoterScore {
|
|||
* @return int
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getScore() : int
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -21,7 +20,6 @@ namespace phpOMS\Business\Sales;
|
|||
* @category Framework
|
||||
* @package phpOMS\Business
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -23,7 +22,6 @@ namespace phpOMS\Config;
|
|||
* @category Framework
|
||||
* @package phpOMS\Config
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -39,7 +37,6 @@ interface OptionsInterface
|
|||
* @return void
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function exists($key);
|
||||
|
||||
|
|
@ -53,7 +50,6 @@ interface OptionsInterface
|
|||
* @return bool
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function setOption($key, $value, bool $overwrite = true) : bool;
|
||||
|
||||
|
|
@ -66,7 +62,6 @@ interface OptionsInterface
|
|||
* @return bool
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function setOptions(array $pair, bool $overwrite = true) : bool;
|
||||
|
||||
|
|
@ -78,7 +73,6 @@ interface OptionsInterface
|
|||
* @return mixed Option value
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getOption($key);
|
||||
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -29,7 +28,6 @@ use phpOMS\DataStorage\Database\Query\Builder;
|
|||
* @category Framework
|
||||
* @package phpOMS\Config
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -88,7 +86,6 @@ abstract class SettingsAbstract implements OptionsInterface
|
|||
* @return mixed Option value
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function get($columns)
|
||||
{
|
||||
|
|
@ -131,7 +128,6 @@ abstract class SettingsAbstract implements OptionsInterface
|
|||
* @return mixed Option value
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function set(array $options, bool $store = false) /* : void */
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -49,7 +48,6 @@ class CommandManager implements \Countable
|
|||
* Constructor.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -25,7 +24,6 @@ namespace phpOMS\Contract;
|
|||
* @category Framework
|
||||
* @package phpOMS\Contract
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -39,7 +37,6 @@ interface ArrayableInterface
|
|||
* @return array
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function toArray() : array;
|
||||
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -26,7 +25,6 @@ namespace phpOMS\Contract;
|
|||
* @category Framework
|
||||
* @package phpOMS\Contract
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -40,7 +38,6 @@ interface RenderableInterface
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function render() : string;
|
||||
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -27,7 +26,6 @@ use phpOMS\DataStorage\Cache\FileCache;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Database
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -39,7 +37,6 @@ class CacheFactory
|
|||
* Constructor.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
private function __construct()
|
||||
{
|
||||
|
|
@ -57,7 +54,6 @@ class CacheFactory
|
|||
* @throws \InvalidArgumentException Throws this exception if the database is not supported.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function create(array $cacheData) : CacheInterface
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -24,7 +23,6 @@ use phpOMS\Datatypes\Exception\InvalidEnumValue;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Cache
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -42,7 +40,6 @@ interface CacheInterface
|
|||
* @return void
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function set($key, $value, int $expire = -1) /* : void */;
|
||||
|
||||
|
|
@ -56,7 +53,6 @@ interface CacheInterface
|
|||
* @return bool
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function add($key, $value, int $expire = -1) : bool;
|
||||
|
||||
|
|
@ -69,7 +65,6 @@ interface CacheInterface
|
|||
* @return mixed Cache value
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function get($key, int $expire = -1);
|
||||
|
||||
|
|
@ -82,7 +77,6 @@ interface CacheInterface
|
|||
* @return bool
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function delete($key, int $expire = -1) : bool;
|
||||
|
||||
|
|
@ -94,7 +88,6 @@ interface CacheInterface
|
|||
* @return bool
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function flush(int $expire = 0) : bool;
|
||||
|
||||
|
|
@ -104,7 +97,6 @@ interface CacheInterface
|
|||
* @return bool
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function flushAll() : bool;
|
||||
|
||||
|
|
@ -118,7 +110,6 @@ interface CacheInterface
|
|||
* @throws InvalidEnumValue
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function setStatus(int $status) /* : void */;
|
||||
|
||||
|
|
@ -132,7 +123,6 @@ interface CacheInterface
|
|||
* @return bool
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function replace($key, $value, int $expire = -1) : bool;
|
||||
|
||||
|
|
@ -142,7 +132,6 @@ interface CacheInterface
|
|||
* @return mixed[] Stats array
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function stats() : array;
|
||||
|
||||
|
|
@ -152,7 +141,6 @@ interface CacheInterface
|
|||
* @return int Storage threshold
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getThreshold() : int;
|
||||
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -31,7 +30,6 @@ use phpOMS\DataStorage\Cache\CacheFactory;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Cache
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -53,7 +51,6 @@ class CachePool implements OptionsInterface
|
|||
* Constructor.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
|
|
@ -68,7 +65,6 @@ class CachePool implements OptionsInterface
|
|||
* @return bool
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function add(string $key = 'core', CacheInterface $cache) : bool
|
||||
{
|
||||
|
|
@ -89,7 +85,6 @@ class CachePool implements OptionsInterface
|
|||
* @return bool
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function remove(string $key) : bool
|
||||
{
|
||||
|
|
@ -110,7 +105,6 @@ class CachePool implements OptionsInterface
|
|||
* @return \phpOMS\DataStorage\Cache\CacheInterface
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function get(string $key) /* : ?CacheInterface */
|
||||
{
|
||||
|
|
@ -130,7 +124,6 @@ class CachePool implements OptionsInterface
|
|||
* @return bool
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function create(string $key, array $config) : bool
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -27,7 +26,6 @@ use phpOMS\Datatypes\Enum;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Cache
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -27,7 +26,6 @@ use phpOMS\Datatypes\Enum;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Cache
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -29,7 +28,6 @@ use phpOMS\System\File\Local\File;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Cache
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -83,7 +81,6 @@ class FileCache implements CacheInterface
|
|||
* @param string $path Cache path
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function __construct(string $path)
|
||||
{
|
||||
|
|
@ -189,7 +186,6 @@ class FileCache implements CacheInterface
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
private function build($value, int $expire) : string
|
||||
{
|
||||
|
|
@ -207,7 +203,6 @@ class FileCache implements CacheInterface
|
|||
* @return int
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
private function dataType($value) : int
|
||||
{
|
||||
|
|
@ -241,7 +236,6 @@ class FileCache implements CacheInterface
|
|||
* @throws InvalidEnumValue
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
private function stringify($value, int $type) : string
|
||||
{
|
||||
|
|
@ -266,7 +260,6 @@ class FileCache implements CacheInterface
|
|||
* @return int
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
private function getExpire(string $raw) : int
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -23,7 +22,6 @@ namespace phpOMS\DataStorage\Cache;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Cache
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -51,7 +49,6 @@ class MemCache implements CacheInterface
|
|||
* Constructor.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
|
|
@ -66,7 +63,6 @@ class MemCache implements CacheInterface
|
|||
* @return void
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function addServer($data)
|
||||
{
|
||||
|
|
@ -162,7 +158,6 @@ class MemCache implements CacheInterface
|
|||
* Destructor.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function __destruct()
|
||||
{
|
||||
|
|
@ -173,7 +168,6 @@ class MemCache implements CacheInterface
|
|||
* Closing cache.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function close()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -23,7 +22,6 @@ namespace phpOMS\DataStorage\Cache;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Cache
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -25,7 +24,6 @@ namespace phpOMS\DataStorage\Cache;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Cache
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -25,7 +24,6 @@ namespace phpOMS\DataStorage\Cache;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Cache
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -25,7 +24,6 @@ use phpOMS\DataStorage\LockException;
|
|||
* @category Framework
|
||||
* @package phpOMS\Utils
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -51,7 +49,6 @@ class CookieJar
|
|||
* Constructor.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
|
|
@ -62,7 +59,6 @@ class CookieJar
|
|||
* Lock
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function lock() /* : void */
|
||||
{
|
||||
|
|
@ -75,7 +71,6 @@ class CookieJar
|
|||
* @return bool
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function isLocked() : bool
|
||||
{
|
||||
|
|
@ -97,7 +92,6 @@ class CookieJar
|
|||
* @return bool
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function set(string $id, $value, int $expire = 86400, string $path = '/', string $domain = null, bool $secure = false, bool $httpOnly = true, bool $overwrite = true) : bool
|
||||
{
|
||||
|
|
@ -127,7 +121,6 @@ class CookieJar
|
|||
* @throws LockException
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function delete(string $id) : bool
|
||||
{
|
||||
|
|
@ -152,7 +145,6 @@ class CookieJar
|
|||
* @return bool
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function remove(string $id) : bool
|
||||
{
|
||||
|
|
@ -173,7 +165,6 @@ class CookieJar
|
|||
* @throws LockException
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function save() /* : void */
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -27,7 +26,6 @@ use phpOMS\DataStorage\Database\Query\Builder;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Database
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -43,7 +41,6 @@ interface DataMapperInterface
|
|||
* @return mixed
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function create($obj);
|
||||
|
||||
|
|
@ -55,7 +52,6 @@ interface DataMapperInterface
|
|||
* @return int Status
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function update($obj) : int;
|
||||
|
||||
|
|
@ -67,7 +63,6 @@ interface DataMapperInterface
|
|||
* @return int Status
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function delete($obj);
|
||||
|
||||
|
|
@ -79,7 +74,6 @@ interface DataMapperInterface
|
|||
* @return array
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function find(string $search) : array;
|
||||
|
||||
|
|
@ -91,7 +85,6 @@ interface DataMapperInterface
|
|||
* @return mixed
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function listResults(Builder $query);
|
||||
|
||||
|
|
@ -103,7 +96,6 @@ interface DataMapperInterface
|
|||
* @return mixed
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function populate(array $result);
|
||||
|
||||
|
|
@ -115,7 +107,6 @@ interface DataMapperInterface
|
|||
* @return array
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function populateIterable(array $result) : array;
|
||||
|
||||
|
|
@ -127,7 +118,6 @@ interface DataMapperInterface
|
|||
* @return $this
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function with(...$objects);
|
||||
|
||||
|
|
@ -139,7 +129,6 @@ interface DataMapperInterface
|
|||
* @return self
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function get($primaryKey);
|
||||
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -25,7 +24,6 @@ use phpOMS\DataStorage\Database\Connection\ConnectionAbstract;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Database
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -72,7 +70,6 @@ abstract class BuilderAbstract
|
|||
* @return BuilderAbstract
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function prefix(string $prefix) : BuilderAbstract
|
||||
{
|
||||
|
|
@ -87,7 +84,6 @@ abstract class BuilderAbstract
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getPrefix() : string
|
||||
{
|
||||
|
|
@ -100,7 +96,6 @@ abstract class BuilderAbstract
|
|||
* @return int
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getType() : int
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -30,7 +29,6 @@ use phpOMS\DataStorage\Database\Schema\Grammar\Grammar as SchemaGrammar;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Database
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -120,7 +118,6 @@ abstract class ConnectionAbstract implements ConnectionInterface
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getPrefix() : string
|
||||
{
|
||||
|
|
@ -157,7 +154,6 @@ abstract class ConnectionAbstract implements ConnectionInterface
|
|||
* Sets the database connection to null
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function __destruct()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -25,7 +24,6 @@ use phpOMS\DataStorage\Database\DatabaseType;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Database
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -37,7 +35,6 @@ class ConnectionFactory
|
|||
* Constructor.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
private function __construct()
|
||||
{
|
||||
|
|
@ -55,7 +52,6 @@ class ConnectionFactory
|
|||
* @throws \InvalidArgumentException Throws this exception if the database is not supported.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function create(array $dbdata) : ConnectionInterface
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -26,7 +25,6 @@ use phpOMS\DataStorage\Database\Schema\Grammar\Grammar as SchemaGrammar;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Database
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -44,7 +42,6 @@ interface ConnectionInterface
|
|||
* @return void
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function connect(array $dbdata) /* : void */;
|
||||
|
||||
|
|
@ -54,7 +51,6 @@ interface ConnectionInterface
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getType() : string;
|
||||
|
||||
|
|
@ -64,7 +60,6 @@ interface ConnectionInterface
|
|||
* @return int
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getStatus() : int;
|
||||
|
||||
|
|
@ -74,7 +69,6 @@ interface ConnectionInterface
|
|||
* @return void
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function close() /* : void */;
|
||||
|
||||
|
|
@ -84,7 +78,6 @@ interface ConnectionInterface
|
|||
* @return Grammar
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getGrammar() : Grammar;
|
||||
|
||||
|
|
@ -94,7 +87,6 @@ interface ConnectionInterface
|
|||
* @return SchemaGrammar
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getSchemaGrammar() : SchemaGrammar;
|
||||
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -31,7 +30,6 @@ use phpOMS\DataStorage\Database\Schema\Grammar\MysqlGrammar as MysqlSchemaGramma
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Database
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -47,7 +45,6 @@ class MysqlConnection extends ConnectionAbstract
|
|||
* @param string[] $dbdata the basic database information for establishing a connection
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function __construct(array $dbdata)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -30,7 +29,6 @@ use phpOMS\DataStorage\Database\Query\Grammar\SqliteGrammar;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Database
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -46,7 +44,6 @@ class SqliteConnection extends ConnectionAbstract
|
|||
* @param string[] $dbdata the basic database information for establishing a connection
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function __construct(array $dbdata)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -31,7 +30,6 @@ use phpOMS\DataStorage\Database\Schema\Grammar\MysqlGrammar as MysqlSchemaGramma
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Database
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -46,7 +44,6 @@ class SqlServerConnection extends ConnectionAbstract
|
|||
* @param string[] $dbdata the basic database information for establishing a connection
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function __construct(array $dbdata)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -30,7 +29,6 @@ use phpOMS\Message\RequestAbstract;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Database
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -164,7 +162,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* Constructor.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
private function __construct()
|
||||
{
|
||||
|
|
@ -174,7 +171,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* Clone.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
private function __clone()
|
||||
{
|
||||
|
|
@ -186,7 +182,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @param ConnectionAbstract $con Database connection
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function setConnection(ConnectionAbstract $con) /* : void */
|
||||
{
|
||||
|
|
@ -199,7 +194,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function getPrimaryField() : string
|
||||
{
|
||||
|
|
@ -212,7 +206,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function getTable() : string
|
||||
{
|
||||
|
|
@ -227,7 +220,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @return void
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
private static function extend($class) /* : void */
|
||||
{
|
||||
|
|
@ -253,7 +245,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @return null
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function with(...$objects) /* : void */
|
||||
{
|
||||
|
|
@ -272,7 +263,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @return void
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function clear() /* : void */
|
||||
{
|
||||
|
|
@ -310,7 +300,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @return Builder
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function find(string $search) : array
|
||||
{
|
||||
|
|
@ -336,7 +325,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @return mixed
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function create($obj, int $relations = RelationType::ALL)
|
||||
{
|
||||
|
|
@ -368,7 +356,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @return mixed
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
private static function createModel($obj, \ReflectionClass $reflectionClass)
|
||||
{
|
||||
|
|
@ -447,7 +434,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @return void
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
private static function setObjectId(\ReflectionClass $reflectionClass, $obj, $objId) /* : void */
|
||||
{
|
||||
|
|
@ -477,7 +463,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @throws \Exception
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
private static function createHasMany(\ReflectionClass $reflectionClass, $obj, $objId) /* : void */
|
||||
{
|
||||
|
|
@ -568,7 +553,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @return mixed
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
private static function createOwnsOne(string $propertyName, $obj)
|
||||
{
|
||||
|
|
@ -597,7 +581,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @return mixed
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
private static function createBelongsTo(string $propertyName, $obj)
|
||||
{
|
||||
|
|
@ -628,7 +611,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @return mixed
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
private static function createRelationTable(string $propertyName, array $objsIds, $objId)
|
||||
{
|
||||
|
|
@ -660,7 +642,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @return mixed
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
private static function parseValue(string $type, $value)
|
||||
{
|
||||
|
|
@ -701,7 +682,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @throws \Exception
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
private static function updateHasMany(\ReflectionClass $reflectionClass, $obj, $objId) /* : void */
|
||||
{
|
||||
|
|
@ -786,7 +766,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @throws \Exception
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
private static function updateRelationTable(string $propertyName, array $objsIds, $objId)
|
||||
{
|
||||
|
|
@ -825,7 +804,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @return mixed
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
private static function deleteRelationTable(string $propertyName, array $objsIds, $objId)
|
||||
{
|
||||
|
|
@ -860,7 +838,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @return mixed
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
private static function updateOwnsOne(string $propertyName, $obj)
|
||||
{
|
||||
|
|
@ -887,7 +864,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @return mixed
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
private static function updateBelongsTo(string $propertyName, $obj)
|
||||
{
|
||||
|
|
@ -911,7 +887,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @return mixed
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
private static function updateModel($obj, $objId, \ReflectionClass $reflectionClass = null) /* : void */
|
||||
{
|
||||
|
|
@ -975,7 +950,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @return int
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function update($obj, int $relations = RelationType::ALL) : int
|
||||
{
|
||||
|
|
@ -1013,7 +987,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @throws \Exception
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
private static function deleteHasMany(\ReflectionClass $reflectionClass, $obj, $objId, int $relations) /* : void */
|
||||
{
|
||||
|
|
@ -1083,7 +1056,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @return mixed
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
private static function deleteOwnsOne(string $propertyName, $obj)
|
||||
{
|
||||
|
|
@ -1109,7 +1081,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @return mixed
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
private static function deleteBelongsTo(string $propertyName, $obj)
|
||||
{
|
||||
|
|
@ -1134,7 +1105,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @return mixed
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
private static function deleteModel($obj, $objId, int $relations = RelationType::REFERENCE, \ReflectionClass $reflectionClass = null) /* : void */
|
||||
{
|
||||
|
|
@ -1189,7 +1159,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @return int
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function delete($obj, int $relations = RelationType::REFERENCE)
|
||||
{
|
||||
|
|
@ -1218,7 +1187,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @return array
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function populateIterable(array $result) : array
|
||||
{
|
||||
|
|
@ -1244,7 +1212,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @return mixed
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function populate(array $result, $obj = null)
|
||||
{
|
||||
|
|
@ -1274,7 +1241,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @return mixed
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function populateManyToMany(array $result, &$obj)
|
||||
{
|
||||
|
|
@ -1316,7 +1282,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @todo accept reflection class as parameter
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function populateHasOne(&$obj)
|
||||
{
|
||||
|
|
@ -1359,7 +1324,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @todo accept reflection class as parameter
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function populateOwnsOne(&$obj)
|
||||
{
|
||||
|
|
@ -1402,7 +1366,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @todo accept reflection class as parameter
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function populateBelongsTo(&$obj)
|
||||
{
|
||||
|
|
@ -1446,7 +1409,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @throws \Exception
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function populateAbstract(array $result, $obj)
|
||||
{
|
||||
|
|
@ -1493,7 +1455,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @return mixed
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function get($primaryKey, int $relations = RelationType::ALL, $fill = null)
|
||||
{
|
||||
|
|
@ -1543,7 +1504,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @return array
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function getAll(int $relations = RelationType::ALL, string $lang = '')
|
||||
{
|
||||
|
|
@ -1566,7 +1526,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @return array
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function listResults(Builder $query)
|
||||
{
|
||||
|
|
@ -1589,7 +1548,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @return mixed
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function getNewest(int $limit = 1, Builder $query = null, int $relations = RelationType::ALL, string $lang = '')
|
||||
{
|
||||
|
|
@ -1631,7 +1589,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @return array
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function getAllByQuery(Builder $query, int $relations = RelationType::ALL) : array
|
||||
{
|
||||
|
|
@ -1657,7 +1614,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @return mixed
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function getRandom(int $amount = 1, int $relations = RelationType::ALL)
|
||||
{
|
||||
|
|
@ -1682,7 +1638,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @return array
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function fillRelations(array &$obj, int $relations = RelationType::ALL)
|
||||
{
|
||||
|
|
@ -1721,7 +1676,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @return mixed
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function getRaw($primaryKey) : array
|
||||
{
|
||||
|
|
@ -1744,7 +1698,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @return array
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function getAllRaw(string $lang = '') : array
|
||||
{
|
||||
|
|
@ -1771,7 +1724,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @return array
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function getHasManyRaw($primaryKey, int $relations = RelationType::ALL) : array
|
||||
{
|
||||
|
|
@ -1825,7 +1777,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @return Builder
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function getQuery(Builder $query = null) : Builder
|
||||
{
|
||||
|
|
@ -1843,7 +1794,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function getCreatedAt() : string
|
||||
{
|
||||
|
|
@ -1860,7 +1810,6 @@ class DataMapperAbstract implements DataMapperInterface
|
|||
* @return mixed
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function getByRequest(RequestAbstract $request)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -25,7 +24,6 @@ use phpOMS\DataStorage\Database\Schema\Exception\TableException;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Database
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -40,7 +38,6 @@ class DatabaseExceptionFactory
|
|||
* @return \PDOException
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function create(\PDOException $e) : \PDOException
|
||||
{
|
||||
|
|
@ -60,7 +57,6 @@ class DatabaseExceptionFactory
|
|||
* @return \PDOException
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
private static function createTableViewException(\PDOException $e) : \PDOException
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -26,7 +25,6 @@ use phpOMS\DataStorage\Database\Connection\ConnectionFactory;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Database
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -46,7 +44,6 @@ class DatabasePool
|
|||
* Constructor.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
|
|
@ -61,7 +58,6 @@ class DatabasePool
|
|||
* @return bool
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function add(string $key = 'core', ConnectionAbstract $db) : bool
|
||||
{
|
||||
|
|
@ -82,7 +78,6 @@ class DatabasePool
|
|||
* @return ConnectionAbstract|null
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function get(string $key = 'core') /* : ?ConnectionAbstract */
|
||||
{
|
||||
|
|
@ -101,7 +96,6 @@ class DatabasePool
|
|||
* @return bool
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function remove(string $key) : bool
|
||||
{
|
||||
|
|
@ -123,7 +117,6 @@ class DatabasePool
|
|||
* @return bool
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function create($key, array $config) : bool
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -27,7 +26,6 @@ use phpOMS\Datatypes\Enum;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Database
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -27,7 +26,6 @@ use phpOMS\Datatypes\Enum;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Database
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -25,7 +24,6 @@ use phpOMS\Utils\StringUtils;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Database
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -98,7 +96,6 @@ abstract class GrammarAbstract
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function compileQuery(BuilderAbstract $query) : string
|
||||
{
|
||||
|
|
@ -122,7 +119,6 @@ abstract class GrammarAbstract
|
|||
* @return array Parsed query components
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
abstract protected function compileComponents(BuilderAbstract $query) : array;
|
||||
|
||||
|
|
@ -132,7 +128,6 @@ abstract class GrammarAbstract
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getDateFormat() : string
|
||||
{
|
||||
|
|
@ -145,7 +140,6 @@ abstract class GrammarAbstract
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getTablePrefix() : string
|
||||
{
|
||||
|
|
@ -158,7 +152,6 @@ abstract class GrammarAbstract
|
|||
* @param string $prefix Table prefix
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function setTablePrefix(string $prefix) /* : void */
|
||||
{
|
||||
|
|
@ -174,7 +167,6 @@ abstract class GrammarAbstract
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
protected function expressionizeTableColumn(array $elements, string $prefix = '') : string
|
||||
{
|
||||
|
|
@ -208,7 +200,6 @@ abstract class GrammarAbstract
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
protected function compileSystem($system, string $prefix = '') : string
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -26,7 +25,6 @@ use phpOMS\DataStorage\Database\Connection\ConnectionAbstract;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Database
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -217,7 +215,6 @@ class Builder extends BuilderAbstract
|
|||
* @param ConnectionAbstract $connection Database connection
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function __construct(ConnectionAbstract $connection, bool $readOnly = false)
|
||||
{
|
||||
|
|
@ -233,7 +230,6 @@ class Builder extends BuilderAbstract
|
|||
* @return void
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function setConnection(ConnectionAbstract $connection) /* : void */
|
||||
{
|
||||
|
|
@ -251,7 +247,6 @@ class Builder extends BuilderAbstract
|
|||
* @todo Closure is not working this way, needs to be evaluated befor assigning
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function select(...$columns) : Builder
|
||||
{
|
||||
|
|
@ -278,7 +273,6 @@ class Builder extends BuilderAbstract
|
|||
* @todo Closure is not working this way, needs to be evaluated befor assigning
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function random(...$columns) : Builder
|
||||
{
|
||||
|
|
@ -297,7 +291,6 @@ class Builder extends BuilderAbstract
|
|||
* @return Builder
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function bind($binds) : Builder
|
||||
{
|
||||
|
|
@ -318,7 +311,6 @@ class Builder extends BuilderAbstract
|
|||
* @return Builder
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function newQuery() : Builder
|
||||
{
|
||||
|
|
@ -331,7 +323,6 @@ class Builder extends BuilderAbstract
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function toSql() : string
|
||||
{
|
||||
|
|
@ -346,7 +337,6 @@ class Builder extends BuilderAbstract
|
|||
* @return Builder
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function raw(string $raw) : Builder
|
||||
{
|
||||
|
|
@ -377,7 +367,6 @@ class Builder extends BuilderAbstract
|
|||
* @return Builder
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function selectRaw($expression) : Builder
|
||||
{
|
||||
|
|
@ -392,7 +381,6 @@ class Builder extends BuilderAbstract
|
|||
* @return Builder
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function distinct(...$columns) : Builder
|
||||
{
|
||||
|
|
@ -409,7 +397,6 @@ class Builder extends BuilderAbstract
|
|||
* @return Builder
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function from(...$tables) : Builder
|
||||
{
|
||||
|
|
@ -432,7 +419,6 @@ class Builder extends BuilderAbstract
|
|||
* @return Builder
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function fromRaw($expression) : Builder
|
||||
{
|
||||
|
|
@ -454,7 +440,6 @@ class Builder extends BuilderAbstract
|
|||
* @throws \InvalidArgumentException
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function where($columns, $operator = null, $values = null, $boolean = 'and') : Builder
|
||||
{
|
||||
|
|
@ -504,7 +489,6 @@ class Builder extends BuilderAbstract
|
|||
* @return array|null
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getWhereByColumn($column) /* : ?array */
|
||||
{
|
||||
|
|
@ -520,7 +504,6 @@ class Builder extends BuilderAbstract
|
|||
* @return string|null
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getTableOfSystem($expression, string $systemIdentifier) /* : ?string */
|
||||
{
|
||||
|
|
@ -539,7 +522,6 @@ class Builder extends BuilderAbstract
|
|||
* @return Builder
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function andWhere(Where $where) : Builder
|
||||
{
|
||||
|
|
@ -559,7 +541,6 @@ class Builder extends BuilderAbstract
|
|||
* @return Builder
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function orWhere(Where $where) : Builder
|
||||
{
|
||||
|
|
@ -581,7 +562,6 @@ class Builder extends BuilderAbstract
|
|||
* @return Builder
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function whereIn($column, $values = null, string $boolean = 'and') : Builder
|
||||
{
|
||||
|
|
@ -599,7 +579,6 @@ class Builder extends BuilderAbstract
|
|||
* @return Builder
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function whereNull($column, string $boolean = 'and') : Builder
|
||||
{
|
||||
|
|
@ -617,7 +596,6 @@ class Builder extends BuilderAbstract
|
|||
* @return Builder
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function whereNotNull($column, string $boolean = 'and') : Builder
|
||||
{
|
||||
|
|
@ -634,7 +612,6 @@ class Builder extends BuilderAbstract
|
|||
* @return Builder
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function groupBy(...$columns) : Builder
|
||||
{
|
||||
|
|
@ -657,7 +634,6 @@ class Builder extends BuilderAbstract
|
|||
* @return Builder
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function newest($column) : Builder
|
||||
{
|
||||
|
|
@ -674,7 +650,6 @@ class Builder extends BuilderAbstract
|
|||
* @return Builder
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function oldest($column) : Builder
|
||||
{
|
||||
|
|
@ -692,7 +667,6 @@ class Builder extends BuilderAbstract
|
|||
* @return Builder
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function orderBy($columns, $order = 'DESC') : Builder
|
||||
{
|
||||
|
|
@ -717,7 +691,6 @@ class Builder extends BuilderAbstract
|
|||
* @return Builder
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function offset($offset) : Builder
|
||||
{
|
||||
|
|
@ -734,7 +707,6 @@ class Builder extends BuilderAbstract
|
|||
* @return Builder
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function limit($limit) : Builder
|
||||
{
|
||||
|
|
@ -751,7 +723,6 @@ class Builder extends BuilderAbstract
|
|||
* @return Builder
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function union($query) : Builder
|
||||
{
|
||||
|
|
@ -768,7 +739,6 @@ class Builder extends BuilderAbstract
|
|||
* Lock query.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function lock()
|
||||
{
|
||||
|
|
@ -778,7 +748,6 @@ class Builder extends BuilderAbstract
|
|||
* Lock for update query.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function lockUpdate()
|
||||
{
|
||||
|
|
@ -788,7 +757,6 @@ class Builder extends BuilderAbstract
|
|||
* Create query string.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function __toString()
|
||||
{
|
||||
|
|
@ -799,7 +767,6 @@ class Builder extends BuilderAbstract
|
|||
* Find query.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function find()
|
||||
{
|
||||
|
|
@ -809,7 +776,6 @@ class Builder extends BuilderAbstract
|
|||
* Count results.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function count(string $table = '*')
|
||||
{
|
||||
|
|
@ -821,7 +787,6 @@ class Builder extends BuilderAbstract
|
|||
* Check if exists.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function exists()
|
||||
{
|
||||
|
|
@ -831,7 +796,6 @@ class Builder extends BuilderAbstract
|
|||
* Select minimum.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function min()
|
||||
{
|
||||
|
|
@ -841,7 +805,6 @@ class Builder extends BuilderAbstract
|
|||
* Select maximum.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function max()
|
||||
{
|
||||
|
|
@ -851,7 +814,6 @@ class Builder extends BuilderAbstract
|
|||
* Select sum.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function sum()
|
||||
{
|
||||
|
|
@ -861,7 +823,6 @@ class Builder extends BuilderAbstract
|
|||
* Select average.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function avg()
|
||||
{
|
||||
|
|
@ -875,7 +836,6 @@ class Builder extends BuilderAbstract
|
|||
* @return Builder
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function insert(...$columns) : Builder
|
||||
{
|
||||
|
|
@ -900,7 +860,6 @@ class Builder extends BuilderAbstract
|
|||
* @return Builder
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function into($table) : Builder
|
||||
{
|
||||
|
|
@ -917,7 +876,6 @@ class Builder extends BuilderAbstract
|
|||
* @return Builder
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function values(...$values) : Builder
|
||||
{
|
||||
|
|
@ -935,7 +893,6 @@ class Builder extends BuilderAbstract
|
|||
* @return Builder
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function value($value, string $type = 'string') : Builder
|
||||
{
|
||||
|
|
@ -955,7 +912,6 @@ class Builder extends BuilderAbstract
|
|||
* @return Builder
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function update(...$columns) : Builder
|
||||
{
|
||||
|
|
@ -976,7 +932,6 @@ class Builder extends BuilderAbstract
|
|||
* Increment value.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function increment()
|
||||
{
|
||||
|
|
@ -986,7 +941,6 @@ class Builder extends BuilderAbstract
|
|||
* Decrement value.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function decrement()
|
||||
{
|
||||
|
|
@ -996,7 +950,6 @@ class Builder extends BuilderAbstract
|
|||
* Join.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function join($table1, $table2, $column1, $opperator, $column2)
|
||||
{
|
||||
|
|
@ -1007,7 +960,6 @@ class Builder extends BuilderAbstract
|
|||
* Join where.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function joinWhere()
|
||||
{
|
||||
|
|
@ -1017,7 +969,6 @@ class Builder extends BuilderAbstract
|
|||
* Left join.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function leftJoin()
|
||||
{
|
||||
|
|
@ -1027,7 +978,6 @@ class Builder extends BuilderAbstract
|
|||
* Left join where.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function leftJoinWhere()
|
||||
{
|
||||
|
|
@ -1037,7 +987,6 @@ class Builder extends BuilderAbstract
|
|||
* Right join.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function rightJoin()
|
||||
{
|
||||
|
|
@ -1047,7 +996,6 @@ class Builder extends BuilderAbstract
|
|||
* Right join where.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function rightJoinWhere()
|
||||
{
|
||||
|
|
@ -1059,7 +1007,6 @@ class Builder extends BuilderAbstract
|
|||
* @return Builder
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function rollback()
|
||||
{
|
||||
|
|
@ -1070,7 +1017,6 @@ class Builder extends BuilderAbstract
|
|||
* On.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function on()
|
||||
{
|
||||
|
|
@ -1087,7 +1033,6 @@ class Builder extends BuilderAbstract
|
|||
* @return Builder
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function merge(Builder $query) : Builder
|
||||
{
|
||||
|
|
@ -1100,7 +1045,6 @@ class Builder extends BuilderAbstract
|
|||
* @return mixed
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function execute()
|
||||
{
|
||||
|
|
@ -1123,7 +1067,6 @@ class Builder extends BuilderAbstract
|
|||
* @return mixed
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function getBindParamType($value)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -23,7 +22,6 @@ namespace phpOMS\DataStorage\Database\Query;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Database
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -45,7 +43,6 @@ class Column
|
|||
* @param string $column Column
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function __construct(string $column)
|
||||
{
|
||||
|
|
@ -58,7 +55,6 @@ class Column
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getColumn() : string
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -30,7 +29,6 @@ use phpOMS\DataStorage\Database\Query\Where;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Database
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -102,7 +100,6 @@ class Grammar extends GrammarAbstract
|
|||
* @throws \InvalidArgumentException
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
protected function compileComponents(BuilderAbstract $query) : array
|
||||
{
|
||||
|
|
@ -150,7 +147,6 @@ class Grammar extends GrammarAbstract
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
protected function compileSelects(Builder $query, array $columns) : string
|
||||
{
|
||||
|
|
@ -172,7 +168,6 @@ class Grammar extends GrammarAbstract
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
protected function compileFrom(Builder $query, array $table) : string
|
||||
{
|
||||
|
|
@ -195,7 +190,6 @@ class Grammar extends GrammarAbstract
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
protected function compileWheres(Builder $query, array $wheres, bool $first = true) : string
|
||||
{
|
||||
|
|
@ -225,7 +219,6 @@ class Grammar extends GrammarAbstract
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
protected function compileWhereElement(array $element, Builder $query, bool $first = true) : string
|
||||
{
|
||||
|
|
@ -271,7 +264,6 @@ class Grammar extends GrammarAbstract
|
|||
* @throws \InvalidArgumentException Throws this exception if the value to compile is not supported by this function.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
protected function compileValue($value, $prefix = '') : string
|
||||
{
|
||||
|
|
@ -313,7 +305,6 @@ class Grammar extends GrammarAbstract
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
protected function compileLimit(Builder $query, int $limit) : string
|
||||
{
|
||||
|
|
@ -329,7 +320,6 @@ class Grammar extends GrammarAbstract
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
protected function compileOffset(Builder $query, $offset) : string
|
||||
{
|
||||
|
|
@ -350,7 +340,6 @@ class Grammar extends GrammarAbstract
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
private function compileGroups(Builder $query, array $groups)
|
||||
{
|
||||
|
|
@ -374,7 +363,6 @@ class Grammar extends GrammarAbstract
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
private function compileOrders(Builder $query, array $orders) : string
|
||||
{
|
||||
|
|
@ -412,7 +400,6 @@ class Grammar extends GrammarAbstract
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
protected function compileInto(Builder $query, $table) : string
|
||||
{
|
||||
|
|
@ -428,7 +415,6 @@ class Grammar extends GrammarAbstract
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
protected function compileInserts(Builder $query, array $columns) : string
|
||||
{
|
||||
|
|
@ -454,7 +440,6 @@ class Grammar extends GrammarAbstract
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
protected function compileValues(Builder $query, array $values) : string
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -24,7 +23,6 @@ use phpOMS\DataStorage\Database\Query\Builder;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Database\Query\Grammar
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -40,7 +38,6 @@ class MicrosoftGrammar extends Grammar
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
protected function compileRandom(Builder $query, array $columns) : string
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -24,7 +23,6 @@ use phpOMS\DataStorage\Database\Query\Builder;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Database\Query\Grammar
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -49,7 +47,6 @@ class MysqlGrammar extends Grammar
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
protected function compileRandom(Builder $query, array $columns) : string
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -24,7 +23,6 @@ use phpOMS\DataStorage\Database\Query\Builder;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Database\Query\Grammar
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -40,7 +38,6 @@ class OracleGrammar extends Grammar
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
protected function compileRandom(Builder $query, array $columns) : string
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -24,7 +23,6 @@ use phpOMS\DataStorage\Database\Query\Builder;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Database\Query\Grammar
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -40,7 +38,6 @@ class PostgresGrammar extends Grammar
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
protected function compileRandom(Builder $query, array $columns) : string
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -24,7 +23,6 @@ use phpOMS\DataStorage\Database\Query\Builder;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Database\Query\Grammar
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -49,7 +47,6 @@ class SqliteGrammar extends Grammar
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
protected function compileRandom(Builder $query, array $columns) : string
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Database
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Database
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -23,7 +22,6 @@ namespace phpOMS\DataStorage\Database\Query;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Database
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -27,7 +26,6 @@ use phpOMS\Datatypes\Enum;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Database
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -27,7 +26,6 @@ use phpOMS\DataStorage\Database\Query;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Database
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -44,7 +42,6 @@ class Builder extends BuilderAbstract
|
|||
* @param ConnectionAbstract $connection Database connection
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function __construct(ConnectionAbstract $connection)
|
||||
{
|
||||
|
|
@ -82,7 +79,6 @@ class Builder extends BuilderAbstract
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function toSql() : string
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -23,7 +22,6 @@ namespace phpOMS\DataStorage\Database\Schema\Exception;
|
|||
* @category System
|
||||
* @package Framework
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -38,7 +36,6 @@ class TableException extends \PDOException
|
|||
* @param \Exception Previous exception
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function __construct(string $message, int $code = 0, \Exception $previous = null)
|
||||
{
|
||||
|
|
@ -53,7 +50,6 @@ class TableException extends \PDOException
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function findTable(string $message) : string
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -27,7 +26,6 @@ use phpOMS\DataStorage\Database\Schema\QueryType;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Database
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -63,7 +61,6 @@ class Grammar extends GrammarAbstract
|
|||
* @return array
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function compileComponents(BuilderAbstract $query) : array
|
||||
{
|
||||
|
|
@ -96,7 +93,6 @@ class Grammar extends GrammarAbstract
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
protected function compileDrop(BuilderAbstract $query, array $tables) : string
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -25,7 +24,6 @@ use phpOMS\DataStorage\Database\Query\Builder;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Database
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -49,7 +47,6 @@ class MysqlGrammar extends Grammar
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
protected function compileSelects(Builder $query, array $columns) : string
|
||||
{
|
||||
|
|
@ -71,7 +68,6 @@ class MysqlGrammar extends Grammar
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
protected function compileFrom(Builder $query, array $table) : string
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -27,7 +26,6 @@ use phpOMS\Datatypes\Enum;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Database
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -23,7 +22,6 @@ namespace phpOMS\DataStorage;
|
|||
* @category Framework
|
||||
* @package phpOMS\System\File
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -38,7 +36,6 @@ class LockException extends \RuntimeException
|
|||
* @param \Exception Previous exception
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function __construct(string $message, int $code = 0, \Exception $previous = null)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -23,7 +22,6 @@ namespace phpOMS\DataStorage\Session;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Session
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -45,7 +43,6 @@ class ConsoleSession implements SessionInterface
|
|||
* @param string|int|bool $sid Session id
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function __construct($sid = false)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -27,7 +26,6 @@ use phpOMS\DataStorage\LockException;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Session
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -68,7 +66,6 @@ class HttpSession implements SessionInterface
|
|||
* @throws LockException Throws this exception if the session is alrady locked for further interaction.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function __construct(int $liftetime = 3600, $sid = false)
|
||||
{
|
||||
|
|
@ -93,7 +90,6 @@ class HttpSession implements SessionInterface
|
|||
* Set Csrf protection for forms.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
private function setCsrfProtection() /* : void */
|
||||
{
|
||||
|
|
@ -133,7 +129,6 @@ class HttpSession implements SessionInterface
|
|||
* Lock session from further adjustments.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function lock()
|
||||
{
|
||||
|
|
@ -146,7 +141,6 @@ class HttpSession implements SessionInterface
|
|||
* @return bool Lock status
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function isLocked() : bool
|
||||
{
|
||||
|
|
@ -198,7 +192,6 @@ class HttpSession implements SessionInterface
|
|||
* Destruct session.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function __destruct()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -25,7 +24,6 @@ namespace phpOMS\DataStorage\Session;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Cache
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -41,7 +39,6 @@ interface SessionInterface
|
|||
* @return mixed
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function get($key);
|
||||
|
||||
|
|
@ -55,7 +52,6 @@ interface SessionInterface
|
|||
* @return bool
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function set($key, $value, bool $overwrite = true) : bool;
|
||||
|
||||
|
|
@ -67,7 +63,6 @@ interface SessionInterface
|
|||
* @return bool
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function remove($key) : bool;
|
||||
|
||||
|
|
@ -79,7 +74,6 @@ interface SessionInterface
|
|||
* @return void
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function save() /* : void */;
|
||||
|
||||
|
|
@ -87,7 +81,6 @@ interface SessionInterface
|
|||
* @return int|string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getSID();
|
||||
|
||||
|
|
@ -97,7 +90,6 @@ interface SessionInterface
|
|||
* @return void
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function setSID($sid) /* : void */;
|
||||
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -23,7 +22,6 @@ namespace phpOMS\DataStorage\Session;
|
|||
* @category Framework
|
||||
* @package phpOMS\DataStorage\Session
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -45,7 +43,6 @@ class SocketSession implements SessionInterface
|
|||
* @param string|int|bool $sid Session id
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function __construct($sid = false)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -24,7 +23,6 @@ use phpOMs\DataStorage\Database\Query\Builder as DatabaseQueryBuilder;
|
|||
* @category Framework
|
||||
* @package phpOMS\Utils
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -23,7 +22,6 @@ namespace phpOMS\Datatypes;
|
|||
* @category Framework
|
||||
* @package phpOMS\Datatypes
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -59,7 +57,6 @@ class Address implements \JsonSerializable
|
|||
* Constructor.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
|
|
@ -72,7 +69,6 @@ class Address implements \JsonSerializable
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getRecipient() : string
|
||||
{
|
||||
|
|
@ -87,7 +83,6 @@ class Address implements \JsonSerializable
|
|||
* @return void
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function setRecipient(string $recipient) /* : void */
|
||||
{
|
||||
|
|
@ -100,7 +95,6 @@ class Address implements \JsonSerializable
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getFAO() : string
|
||||
{
|
||||
|
|
@ -115,7 +109,6 @@ class Address implements \JsonSerializable
|
|||
* @return void
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function setFAO(string $fao) /* : void */
|
||||
{
|
||||
|
|
@ -128,7 +121,6 @@ class Address implements \JsonSerializable
|
|||
* @return Location
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getLocation() : Location
|
||||
{
|
||||
|
|
@ -143,7 +135,6 @@ class Address implements \JsonSerializable
|
|||
* @return void
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function setLocation(Location $location) /* : void */
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -23,7 +22,6 @@ namespace phpOMS\Datatypes;
|
|||
* @category Framework
|
||||
* @package phpOMS\Datatypes
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -25,7 +24,6 @@ namespace phpOMS\Datatypes;
|
|||
* @category Framework
|
||||
* @package phpOMS\Datatypes
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -43,7 +41,6 @@ abstract class Enum
|
|||
* @return bool
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function isValidValue($value) : bool
|
||||
{
|
||||
|
|
@ -58,7 +55,6 @@ abstract class Enum
|
|||
* @return array
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function getConstants() : array
|
||||
{
|
||||
|
|
@ -73,7 +69,6 @@ abstract class Enum
|
|||
* @return mixed
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function getRandom()
|
||||
{
|
||||
|
|
@ -93,7 +88,6 @@ abstract class Enum
|
|||
* @throws \Exception Throws this exception if the constant is not defined in the enum class.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function getByName(string $name)
|
||||
{
|
||||
|
|
@ -114,7 +108,6 @@ abstract class Enum
|
|||
* @throws \Exception Throws this exception if the constant is not defined in the enum class.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function getName(string $value)
|
||||
{
|
||||
|
|
@ -133,7 +126,6 @@ abstract class Enum
|
|||
* @return bool
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function isValidName(string $name) : bool
|
||||
{
|
||||
|
|
@ -146,7 +138,6 @@ abstract class Enum
|
|||
* @return int
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function count() : int
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -25,7 +24,6 @@ namespace phpOMS\Datatypes;
|
|||
* @category Framework
|
||||
* @package phpOMS\Datatypes
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -43,7 +41,6 @@ abstract class EnumArray
|
|||
* @return bool
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function isValidName(string $name) : bool
|
||||
{
|
||||
|
|
@ -58,7 +55,6 @@ abstract class EnumArray
|
|||
* @return array
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function getConstants() : array
|
||||
{
|
||||
|
|
@ -76,7 +72,6 @@ abstract class EnumArray
|
|||
* @return bool
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function isValidValue($value) : bool
|
||||
{
|
||||
|
|
@ -95,7 +90,6 @@ abstract class EnumArray
|
|||
* @throws \Exception
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function get($key)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -25,7 +24,6 @@ namespace phpOMS\Datatypes\Exception;
|
|||
* @category Framework
|
||||
* @package phpOMS\Datatypes
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -41,7 +39,6 @@ class InvalidEnumName extends \UnexpectedValueException
|
|||
* @param \Exception Previous exception
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function __construct(string $message, int $code = 0, \Exception $previous = null)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -25,7 +24,6 @@ namespace phpOMS\Datatypes\Exception;
|
|||
* @category Framework
|
||||
* @package phpOMS\Datatypes
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -41,7 +39,6 @@ class InvalidEnumValue extends \UnexpectedValueException
|
|||
* @param \Exception Previous exception
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function __construct(string $message, int $code = 0, \Exception $previous = null)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -25,7 +24,6 @@ use phpOMS\Validation\Base\IbanEnum;
|
|||
* @category Framework
|
||||
* @package phpOMS\Datatypes
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -48,7 +46,6 @@ class Iban implements \Serializable
|
|||
* @param string $iban Iban
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function __construct(string $iban)
|
||||
{
|
||||
|
|
@ -63,7 +60,6 @@ class Iban implements \Serializable
|
|||
* @return void
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
private function parse(string $iban) /* : void */
|
||||
{
|
||||
|
|
@ -82,7 +78,6 @@ class Iban implements \Serializable
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function normalize(string $iban) : string
|
||||
{
|
||||
|
|
@ -95,7 +90,6 @@ class Iban implements \Serializable
|
|||
* @return int
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getLength() : int
|
||||
{
|
||||
|
|
@ -108,7 +102,6 @@ class Iban implements \Serializable
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getChecksum() : string
|
||||
{
|
||||
|
|
@ -123,7 +116,6 @@ class Iban implements \Serializable
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
private function getSequence(string $sequence) : string
|
||||
{
|
||||
|
|
@ -146,7 +138,6 @@ class Iban implements \Serializable
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getCountry() : string
|
||||
{
|
||||
|
|
@ -159,7 +150,6 @@ class Iban implements \Serializable
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getNationalChecksum() : string
|
||||
{
|
||||
|
|
@ -172,7 +162,6 @@ class Iban implements \Serializable
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getBranchCode() : string
|
||||
{
|
||||
|
|
@ -185,7 +174,6 @@ class Iban implements \Serializable
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getAccountType() : string
|
||||
{
|
||||
|
|
@ -198,7 +186,6 @@ class Iban implements \Serializable
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getCurrency() : string
|
||||
{
|
||||
|
|
@ -211,7 +198,6 @@ class Iban implements \Serializable
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getBankCode() : string
|
||||
{
|
||||
|
|
@ -224,7 +210,6 @@ class Iban implements \Serializable
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getAccount() : string
|
||||
{
|
||||
|
|
@ -237,7 +222,6 @@ class Iban implements \Serializable
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getHoldersKennital() : string
|
||||
{
|
||||
|
|
@ -250,7 +234,6 @@ class Iban implements \Serializable
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getOwnerAccountNumber() : string
|
||||
{
|
||||
|
|
@ -265,7 +248,6 @@ class Iban implements \Serializable
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getBicCode() : string
|
||||
{
|
||||
|
|
@ -289,7 +271,6 @@ class Iban implements \Serializable
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function prettyPrint() : string
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -23,7 +22,6 @@ namespace phpOMS\Datatypes;
|
|||
* @category Framework
|
||||
* @package phpOMS\Datatypes
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -99,7 +97,6 @@ class Location implements \JsonSerializable, \Serializable
|
|||
* Constructor.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
|
|
@ -109,7 +106,6 @@ class Location implements \JsonSerializable, \Serializable
|
|||
* @return int
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getId() : int
|
||||
{
|
||||
|
|
@ -120,7 +116,6 @@ class Location implements \JsonSerializable, \Serializable
|
|||
* @return int
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getType() : int
|
||||
{
|
||||
|
|
@ -136,7 +131,6 @@ class Location implements \JsonSerializable, \Serializable
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getPostal() : string
|
||||
{
|
||||
|
|
@ -149,7 +143,6 @@ class Location implements \JsonSerializable, \Serializable
|
|||
* @return void
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function setPostal(string $postal) /* : void */
|
||||
{
|
||||
|
|
@ -160,7 +153,6 @@ class Location implements \JsonSerializable, \Serializable
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getCity() : string
|
||||
{
|
||||
|
|
@ -173,7 +165,6 @@ class Location implements \JsonSerializable, \Serializable
|
|||
* @return void
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function setCity(string $city) /* : void */
|
||||
{
|
||||
|
|
@ -184,7 +175,6 @@ class Location implements \JsonSerializable, \Serializable
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getCountry() : string
|
||||
{
|
||||
|
|
@ -197,7 +187,6 @@ class Location implements \JsonSerializable, \Serializable
|
|||
* @return void
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function setCountry(string $country) /* : void */
|
||||
{
|
||||
|
|
@ -208,7 +197,6 @@ class Location implements \JsonSerializable, \Serializable
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getAddress() : string
|
||||
{
|
||||
|
|
@ -221,7 +209,6 @@ class Location implements \JsonSerializable, \Serializable
|
|||
* @return void
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function setAddress(string $address) /* : void */
|
||||
{
|
||||
|
|
@ -232,7 +219,6 @@ class Location implements \JsonSerializable, \Serializable
|
|||
* @return string
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getState() : string
|
||||
{
|
||||
|
|
@ -245,7 +231,6 @@ class Location implements \JsonSerializable, \Serializable
|
|||
* @return void
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function setState(string $state) /* : void */
|
||||
{
|
||||
|
|
@ -256,7 +241,6 @@ class Location implements \JsonSerializable, \Serializable
|
|||
* @return float[]
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getGeo() : array
|
||||
{
|
||||
|
|
@ -269,7 +253,6 @@ class Location implements \JsonSerializable, \Serializable
|
|||
* @return void
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function setGeo(array $geo) /* : void */
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -23,7 +22,6 @@ namespace phpOMS\Datatypes;
|
|||
* @category Framework
|
||||
* @package phpOMS\Datatypes
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -23,7 +22,6 @@ namespace phpOMS\Datatypes;
|
|||
* @category Framework
|
||||
* @package phpOMS\Datatypes
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -25,7 +24,6 @@ namespace phpOMS\Datatypes;
|
|||
* @category Framework
|
||||
* @package phpOMS\Datatypes
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -67,7 +65,6 @@ class SmartDateTime extends \DateTime
|
|||
* @return SmartDateTime
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function createModify(int $y, int $m = 0, int $d = 0, int $calendar = CAL_GREGORIAN) : SmartDateTime
|
||||
{
|
||||
|
|
@ -88,7 +85,6 @@ class SmartDateTime extends \DateTime
|
|||
* @return SmartDateTime
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function smartModify(int $y, int $m = 0, int $d = 0, int $calendar = CAL_GREGORIAN) : SmartDateTime
|
||||
{
|
||||
|
|
@ -124,7 +120,6 @@ class SmartDateTime extends \DateTime
|
|||
* @return SmartDateTime
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getEndOfMonth() : SmartDateTime
|
||||
{
|
||||
|
|
@ -137,7 +132,6 @@ class SmartDateTime extends \DateTime
|
|||
* @return SmartDateTime
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getStartOfMonth() : SmartDateTime
|
||||
{
|
||||
|
|
@ -150,7 +144,6 @@ class SmartDateTime extends \DateTime
|
|||
* @return int
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getDaysOfMonth() : int
|
||||
{
|
||||
|
|
@ -163,7 +156,6 @@ class SmartDateTime extends \DateTime
|
|||
* @return int
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getFirstDayOfMonth() : int
|
||||
{
|
||||
|
|
@ -176,7 +168,6 @@ class SmartDateTime extends \DateTime
|
|||
* @return bool
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function isLeapYear() : bool
|
||||
{
|
||||
|
|
@ -189,7 +180,6 @@ class SmartDateTime extends \DateTime
|
|||
* @return bool
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function leapYear(int $year) : bool
|
||||
{
|
||||
|
|
@ -216,7 +206,6 @@ class SmartDateTime extends \DateTime
|
|||
* @return int
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public static function getDayOfWeek(int $y, int $m, int $d) : int
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -27,7 +26,6 @@ use phpOMS\System\File\PathException;
|
|||
* @category Framework
|
||||
* @package phpOMS\Dispatcher
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -59,7 +57,6 @@ class Dispatcher
|
|||
* @param ApplicationAbstract $app Appliaction
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function __construct(ApplicationAbstract $app)
|
||||
{
|
||||
|
|
@ -75,7 +72,6 @@ class Dispatcher
|
|||
* @return array
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function dispatch($controller, ...$data) : array
|
||||
{
|
||||
|
|
@ -107,7 +103,6 @@ class Dispatcher
|
|||
* @return array
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
private function dispatchString(string $controller, array $data = null) : array
|
||||
{
|
||||
|
|
@ -137,7 +132,6 @@ class Dispatcher
|
|||
* @return array
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
private function dispatchArray(array $controller, array $data = null) : array
|
||||
{
|
||||
|
|
@ -160,7 +154,6 @@ class Dispatcher
|
|||
* @return mixed
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
private function dispatchClosure(\Closure $controller, array $data = null)
|
||||
{
|
||||
|
|
@ -175,7 +168,6 @@ class Dispatcher
|
|||
* @return mixed
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
private function getController(string $controller)
|
||||
{
|
||||
|
|
@ -204,7 +196,6 @@ class Dispatcher
|
|||
* @return bool
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function set(ModuleAbstract $controller, string $name) : bool
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -23,7 +22,6 @@ namespace phpOMS\Event;
|
|||
* @category Framework
|
||||
* @package phpOMS\Event
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
@ -52,7 +50,6 @@ class EventManager
|
|||
* Constructor.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
|
|
@ -155,7 +152,6 @@ class EventManager
|
|||
* @return int
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function count() : int
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
|
|
@ -25,7 +24,6 @@ use phpOMS\Datatypes\Enum;
|
|||
* @category Framework
|
||||
* @package phpOMS\Html
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user