-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from itk-dev/feature/sprint-planning
LEAT-58: Sprint report
- Loading branch information
Showing
12 changed files
with
550 additions
and
148 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
|
||
namespace App\Model\SprintReport; | ||
|
||
class SprintReportProject | ||
{ | ||
public string $id; | ||
public string $name; | ||
|
||
public function __construct(string $id, string $name) | ||
{ | ||
$this->id = $id; | ||
$this->name = $name; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?php | ||
|
||
namespace App\Model\SprintReport; | ||
|
||
use Doctrine\Common\Collections\ArrayCollection; | ||
|
||
class SprintReportProjects | ||
{ | ||
/** @var ArrayCollection<string, SprintReportProject> */ | ||
public ArrayCollection $projects; | ||
|
||
public function __construct() | ||
{ | ||
$this->projects = new ArrayCollection(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
|
||
namespace App\Model\SprintReport; | ||
|
||
class SprintReportVersion | ||
{ | ||
public string $id; | ||
public string $headline; | ||
|
||
public function __construct(string $id, string $headline) | ||
{ | ||
$this->id = $id; | ||
$this->headline = $headline; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?php | ||
|
||
namespace App\Model\SprintReport; | ||
|
||
use Doctrine\Common\Collections\ArrayCollection; | ||
|
||
class SprintReportVersions | ||
{ | ||
/** @var ArrayCollection<string, SprintReportVersion> */ | ||
public ArrayCollection $versions; | ||
|
||
public function __construct() | ||
{ | ||
$this->versions = new ArrayCollection(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.