mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 17:58:41 +00:00
Adding DocComment
This commit is contained in:
parent
466d7b0efb
commit
d0222c7709
|
|
@ -768,6 +768,18 @@ class Repository
|
|||
return $contributors;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get additions and removals from contributor.
|
||||
*
|
||||
* @param Author $author Author
|
||||
* @param \DateTime $start Start date
|
||||
* @param \DateTime $end End date
|
||||
*
|
||||
* @return array ['added' => ?, 'removed'=> ?]
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
public function getAdditionsRemovalsByContributor(Author $author, \DateTime $start = null, \DateTime $end = null) : array
|
||||
{
|
||||
$addremove = ['added' => 0, 'removed' => 0];
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user