Skip to content

Commit

Permalink
remove type hints for php7.2 compatability
Browse files Browse the repository at this point in the history
  • Loading branch information
matfish3 committed Apr 26, 2023
1 parent 1129acd commit 96fb650
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/services/RecordRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,11 @@ protected function isAjax(): bool
}

/**
* @param object|array $payload
* @return false|string|null
* @param $payload
* @return
* @throws \JsonException
*/
protected function getPayload(): string|null|false
protected function getPayload()
{
$payload = $this->request->getBodyParams();

Expand Down

0 comments on commit 96fb650

Please sign in to comment.