jcb-compiler/src/d910d8b8-4c23-4f3e-8cda-438.../README.md

70 lines
2.0 KiB
Markdown
Raw Permalink Normal View History

2023-03-21 22:52:57 +00:00
```
██████╗ ██████╗ ██╗ ██╗███████╗██████╗
██╔══██╗██╔═══██╗██║ ██║██╔════╝██╔══██╗
██████╔╝██║ ██║██║ █╗ ██║█████╗ ██████╔╝
██╔═══╝ ██║ ██║██║███╗██║██╔══╝ ██╔══██╗
██║ ╚██████╔╝╚███╔███╔╝███████╗██║ ██║
╚═╝ ╚═════╝ ╚══╝╚══╝ ╚══════╝╚═╝ ╚═╝
```
# abstract class Factory (Details)
> namespace: **VDM\Joomla\Componentbuilder\Compiler**
```uml
@startuml
abstract Factory #Orange {
+ {static} _(string $key) : mixed
2023-10-10 09:39:16 +00:00
+ {static} getKeys() : array
2023-03-21 22:52:57 +00:00
+ {static} _J(string $key) : mixed
+ {static} getContainer() : Container
# {static} createContainer() : Container
}
note right of Factory::_
Get any class from the compiler container
since: 3.2.0
return: mixed
end note
2023-10-10 09:39:16 +00:00
note right of Factory::getKeys
Get array of all keys in container
since: 3.2.0
return: array
end note
2023-03-21 22:52:57 +00:00
note right of Factory::_J
Get version specific class from the compiler container
since: 3.2.0
return: mixed
end note
note right of Factory::getContainer
Get the global compiler container
since: 3.2.0
return: Container
end note
note right of Factory::createContainer
Create a container object
since: 3.2.0
return: Container
end note
@enduml
```
---
```
██╗ ██████╗██████╗
██║██╔════╝██╔══██╗
██║██║ ██████╔╝
██ ██║██║ ██╔══██╗
╚█████╔╝╚██████╗██████╔╝
╚════╝ ╚═════╝╚═════╝
```
> Build with [Joomla Component Builder](https://git.vdm.dev/joomla/Component-Builder)