This commit is contained in:
James Cole
2018-04-03 19:12:59 +02:00
parent 03a42976b1
commit 609c193b88
7 changed files with 26 additions and 9 deletions

View File

@@ -538,9 +538,9 @@ class BillRepository implements BillRepositoryInterface
/**
* @param array $data
*
* @return Bill
* @return Bill|null
*/
public function store(array $data): Bill
public function store(array $data): ?Bill
{
/** @var BillFactory $factory */
$factory = app(BillFactory::class);