gitea/src/ca53d4cb-7800-4ea2-b06e-746.../README.md

88 lines
2.3 KiB
Markdown
Raw Permalink Normal View History

2023-04-15 15:08:07 +00:00
```
██████╗ ██████╗ ██╗ ██╗███████╗██████╗
██╔══██╗██╔═══██╗██║ ██║██╔════╝██╔══██╗
██████╔╝██║ ██║██║ █╗ ██║█████╗ ██████╔╝
██╔═══╝ ██║ ██║██║███╗██║██╔══╝ ██╔══██╗
██║ ╚██████╔╝╚███╔███╔╝███████╗██║ ██║
╚═╝ ╚═════╝ ╚══╝╚══╝ ╚══════╝╚═╝ ╚═╝
```
# class Labels (Details)
> namespace: **VDM\Joomla\Gitea**
2023-10-10 09:39:23 +00:00
> extends: **Api**
2023-04-15 15:08:07 +00:00
```uml
@startuml
class Labels #Gold {
+ create(string $owner, string $repo, ...) : ?object
+ get(string $owner, string $repo, ...) : ?object
+ delete(string $owner, string $repo, ...) : string
+ update(string $owner, string $repo, ...) : ?object
}
note right of Labels::create
Create a label.
since: 3.2.0
return: ?object
arguments:
string $owner
string $repo
string $labelName
string $labelColor
string $labelDescription = ''
end note
note right of Labels::get
Get a single label.
since: 3.2.0
return: ?object
arguments:
string $owner
string $repo
string $id
end note
note right of Labels::delete
Delete a label.
since: 3.2.0
return: string
arguments:
string $owner
string $repo
string $id
end note
note right of Labels::update
Update a label.
since: 3.2.0
return: ?object
arguments:
string $owner
string $repo
string $id
string $labelName = ''
string $labelColor = ''
string $labelDescription = ''
end note
@enduml
```
---
```
██╗ ██████╗██████╗
██║██╔════╝██╔══██╗
██║██║ ██████╔╝
██ ██║██║ ██╔══██╗
╚█████╔╝╚██████╗██████╔╝
╚════╝ ╚═════╝╚═════╝
```
> Build with [Joomla Component Builder](https://git.vdm.dev/joomla/Component-Builder)