super-powers/src/b84e947d-2a13-44f7-ac0f-390...
Robot 2125425324
update 2024-04-07 13:20:18
2024-04-07 13:20:46 +02:00
..
README.md update 2023-10-04 18:35:53 2023-10-04 20:23:30 +02:00
code.php update 2023-04-15 16:49:30 2023-04-15 16:49:41 +02:00
code.power update 2023-04-15 16:49:30 2023-04-15 16:49:41 +02:00
settings.json update 2024-04-07 13:20:18 2024-04-07 13:20:46 +02:00

README.md

██████╗  ██████╗ ██╗    ██╗███████╗██████╗
██╔══██╗██╔═══██╗██║    ██║██╔════╝██╔══██╗
██████╔╝██║   ██║██║ █╗ ██║█████╗  ██████╔╝
██╔═══╝ ██║   ██║██║███╗██║██╔══╝  ██╔══██╗
██║     ╚██████╔╝╚███╔███╔╝███████╗██║  ██║
╚═╝      ╚═════╝  ╚══╝╚══╝ ╚══════╝╚═╝  ╚═╝

abstract class BaseRegistry (Details)

namespace: VDM\Joomla\Componentbuilder\Abstraction extends: JoomlaRegistry

@startuml
abstract BaseRegistry  #Orange {
  + _(string $path) : ?\ArrayIterator
  + appendArray(string $path, mixed $value) : mixed
  + isArray(string $path) : bool
  + isString(string $path) : bool
  + isNumeric(string $path) : bool
}

note right of BaseRegistry::_
  Method to iterate over any part of the registry

  since: 3.4.0
  return: ?\ArrayIterator
end note

note right of BaseRegistry::appendArray
  Append value to a path in registry of an array

  since: 3.2.0
  return: mixed
end note

note right of BaseRegistry::isArray
  Check if a registry path exists and is an array

  since: 3.2.0
  return: bool
end note

note right of BaseRegistry::isString
  Check if a registry path exists and is a string

  since: 3.2.0
  return: bool
end note

note right of BaseRegistry::isNumeric
  Check if a registry path exists and is numeric

  since: 3.2.0
  return: bool
end note
 
@enduml

     ██╗ ██████╗██████╗
     ██║██╔════╝██╔══██╗
     ██║██║     ██████╔╝
██   ██║██║     ██╔══██╗
╚█████╔╝╚██████╗██████╔╝
 ╚════╝  ╚═════╝╚═════╝

Build with Joomla Component Builder