Skip to content

Commit 462d076

Browse files
committed
minor #128 Log - fix wrong types in docblock (keradus)
This PR was squashed before being merged into the 1.0-dev branch (closes #128). Discussion ---------- Log - fix wrong types in docblock Commits ------- 1bd93e0 Log - fix wrong types in docblock
2 parents 9d5f3ea + 1bd93e0 commit 462d076

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/Gitonomy/Git/Log.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ class Log implements \Countable, \IteratorAggregate
4848
/**
4949
* Instanciates a git log object.
5050
*
51-
* @param Repository $repository the repository where log occurs
52-
* @param RevisionList $revisions a list of revisions or null if you want all history
53-
* @param array $paths paths to filter on
54-
* @param int|null $offset start list from a given position
55-
* @param int|null $limit limit number of fetched elements
51+
* @param Repository $repository the repository where log occurs
52+
* @param RevisionList|Revision|array|null $revisions a list of revisions or null if you want all history
53+
* @param array $paths paths to filter on
54+
* @param int|null $offset start list from a given position
55+
* @param int|null $limit limit number of fetched elements
5656
*/
5757
public function __construct(Repository $repository, $revisions = null, $paths = null, $offset = null, $limit = null)
5858
{

0 commit comments

Comments
 (0)