Skip to content
This repository was archived by the owner on Jan 5, 2019. It is now read-only.

Commit 86a907a

Browse files
author
Mario Basic
committed
Fixed int in get sum for month.
1 parent 3c091c9 commit 86a907a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/Service.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,11 +108,11 @@ public function getSum(Collection $services = null)
108108
*
109109
* By default, all services are included (active and non active).
110110
*
111-
* @param int $month
111+
* @param $month
112112
* @param boolean $onlyActive
113113
* @return [type]
114114
*/
115-
public function getSumForMonth(int $month, $onlyActive = false)
115+
public function getSumForMonth($month, $onlyActive = false)
116116
{
117117
$services = $this->where('month', $month);
118118
if($onlyActive) {

0 commit comments

Comments
 (0)