gitea/src/f428beab-10f4-4c0d-bb9e-8c7...
Robot 12042ffd4d
update 2024-04-07 13:20:18
2024-04-07 13:20:22 +02:00
..
README.md update 2023-10-10 10:16:07 2023-10-10 11:39:23 +02:00
code.php first commit 2023-04-15 17:08:07 +02:00
code.power first commit 2023-04-15 17:08:07 +02:00
settings.json update 2024-04-07 13:20:18 2024-04-07 13:20:22 +02:00

README.md

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

class Milestones (Details)

namespace: VDM\Joomla\Gitea\Issue extends: Api

@startuml
class Milestones  #Gold {
  + create(string $owner, string $repo, ...) : ?object
  + list(string $owner, string $repo, ...) : ?array
  + get(string $owner, string $repo, ...) : ?object
  + delete(string $owner, string $repo, ...) : string
  + update(string $owner, string $repo, ...) : ?object
}

note right of Milestones::create
  Create a milestone.

  since: 3.2.0
  return: ?object
  
  arguments:
    string $owner
    string $repo
    string $title
    ?string $description = null
    ?string $dueOn = null
    ?string $state = 'open'
end note

note right of Milestones::list
  Get all of a repository's opened milestones.

  since: 3.2.0
  return: ?array
  
  arguments:
    string $owner
    string $repo
    ?string $state = 'open'
    ?string $name = null
    ?int $page = null
    ?int $limit = null
end note

note right of Milestones::get
  Get a milestone.

  since: 3.2.0
  return: ?object
  
  arguments:
    string $owner
    string $repo
    string $milestoneId
end note

note right of Milestones::delete
  Delete a milestone.

  since: 3.2.0
  return: string
  
  arguments:
    string $owner
    string $repo
    string $milestoneId
end note

note right of Milestones::update
  Update a milestone.

  since: 3.2.0
  return: ?object
  
  arguments:
    string $owner
    string $repo
    string $milestoneId
    string $title = null
    string $description = null
    string $dueOn = null
    string $state = null
end note
 
@enduml

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

Build with Joomla Component Builder