Fixed return type [skip ci]

This commit is contained in:
James Cole 2015-05-26 20:59:16 +02:00
parent 4d5124fb4c
commit bbf4007c3e
2 changed files with 2 additions and 2 deletions

View File

@ -209,7 +209,7 @@ class BillRepository implements BillRepositoryInterface
/** /**
* @param Bill $bill * @param Bill $bill
* *
* @return Carbon * @return \Carbon\Carbon
*/ */
public function nextExpectedMatch(Bill $bill) public function nextExpectedMatch(Bill $bill)
{ {

View File

@ -103,7 +103,7 @@ interface BillRepositoryInterface
/** /**
* @param Bill $bill * @param Bill $bill
* *
* @return Carbon|null * @return \Carbon\Carbon
*/ */
public function nextExpectedMatch(Bill $bill); public function nextExpectedMatch(Bill $bill);