update 2024-05-16 16:19:46

This commit is contained in:
Robot 2024-05-16 16:19:46 +02:00
parent 8f0a6aa0b1
commit 4335ebb2af
Signed by: Robot
GPG Key ID: 14DECD44E7E1BB95
3 changed files with 32 additions and 1 deletions

View File

@ -12,6 +12,8 @@
```uml
@startuml
class DatabaseKeys << (F,LightGreen) >> #RoyalBlue {
# bool $addAsArray
# bool $uniqueArray
}
@enduml

View File

@ -23,5 +23,20 @@ use VDM\Joomla\Abstraction\Registry;
*/
final class DatabaseKeys extends Registry implements Registryinterface
{
/**
* Base switch to add values as string or array
*
* @var boolean
* @since 3.2.0
**/
protected bool $addAsArray = true;
/**
* Base switch to keep array values unique
*
* @var boolean
* @since 3.2.2
**/
protected bool $uniqueArray = true;
}

View File

@ -1 +1,15 @@
###CODEPOWER###
/**
* Base switch to add values as string or array
*
* @var boolean
* @since 3.2.0
**/
protected bool $addAsArray = true;
/**
* Base switch to keep array values unique
*
* @var boolean
* @since 3.2.2
**/
protected bool $uniqueArray = true;