Specify return types.

This commit is contained in:
James Cole
2018-07-08 12:28:42 +02:00
parent b315882f58
commit d05a1e0260
70 changed files with 254 additions and 229 deletions

View File

@@ -33,7 +33,7 @@ class BudgetFormRequest extends Request
/**
* @return bool
*/
public function authorize()
public function authorize(): bool
{
return auth()->check();
}
@@ -52,7 +52,7 @@ class BudgetFormRequest extends Request
/**
* @return array
*/
public function rules()
public function rules(): array
{
// fixed
/** @var BudgetRepositoryInterface $repository */