Skip to content

Commit 3e689cf

Browse files
committed
Please fix failing tests? ✋
1 parent 29ac166 commit 3e689cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/Http/Requests/Admin/AdminFormRequest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ abstract public function rules();
2626
*
2727
* @return bool
2828
*/
29-
public function authorize(): bool
29+
public function authorize()
3030
{
3131
if (is_null($this->user())) {
3232
return false;
@@ -42,7 +42,7 @@ public function authorize(): bool
4242
* @param array $only
4343
* @return array
4444
*/
45-
public function normalize($only = []): array
45+
public function normalize($only = [])
4646
{
4747
return array_merge(
4848
$this->only($only),

0 commit comments

Comments
 (0)