Skip to content

Latest commit

 

History

History
276 lines (101 loc) · 2.46 KB

File metadata and controls

276 lines (101 loc) · 2.46 KB
title footer
\leantime\domain\repositories\sprints
false

sprints

  • Full name: \leantime\domain\repositories\sprints

Methods

__construct

__construct - get database connection

public sprints::__construct(): mixed

Return Value:


getSprint

getSprint - get single sprint

public sprints::getSprint(mixed $id): array

Parameters:

Parameter Type Description
id mixed

Return Value:


getAllSprints

getAllSprints - get all sprints for a project

public sprints::getAllSprints(mixed $projectId): array

Parameters:

Parameter Type Description
projectId mixed

Return Value:


getAllFutureSprints

getAllSprints - get all sprints for a project

public sprints::getAllFutureSprints(mixed $projectId): array

Parameters:

Parameter Type Description
projectId mixed

Return Value:


getCurrentSprint

getCurrentSprintId - get current sprint for a project

public sprints::getCurrentSprint(mixed $projectId): mixed

Parameters:

Parameter Type Description
projectId mixed

Return Value:


getUpcomingSprint

getUpcomingSprint - gets the next upcoming sprint

public sprints::getUpcomingSprint(mixed $projectId): array

Parameters:

Parameter Type Description
projectId mixed

Return Value:


addSprint

public sprints::addSprint(mixed $sprint): mixed

Parameters:

Parameter Type Description
sprint mixed

Return Value:


editSprint

public sprints::editSprint(mixed $sprint): mixed

Parameters:

Parameter Type Description
sprint mixed

Return Value:


delSprint

public sprints::delSprint(mixed $id): mixed

Parameters:

Parameter Type Description
id mixed

Return Value:



Automatically generated from source code comments on 2023-02-28 using phpDocumentor