Merge pull request #6675 from limenet/patch-1

Add missing semicolons
This commit is contained in:
David Bomba 2021-09-20 06:52:57 +10:00 committed by GitHub
commit 483ae941ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -22,7 +22,7 @@ class DefaultCompanyRequest extends Request
*/ */
public function authorize() : bool public function authorize() : bool
{ {
return auth()->user()->isAdmin() return auth()->user()->isAdmin();
} }
public function rules() public function rules()

View File

@ -95,7 +95,7 @@ class Token
$response_status = ErrorCode::getStatus($response->ResponseMessage); $response_status = ErrorCode::getStatus($response->ResponseMessage);
$error = $response_status['message'] $error = $response_status['message'];
$error_code = $response->ResponseMessage; $error_code = $response->ResponseMessage;
$data = [ $data = [

View File

@ -43,7 +43,7 @@ class SEPA
'customer' => $customer->id, 'customer' => $customer->id,
], $this->stripe_driver->stripe_connect_auth); ], $this->stripe_driver->stripe_connect_auth);
$client_secret = $setup_intent->client_secret $client_secret = $setup_intent->client_secret;
// Pass the client secret to the client // Pass the client secret to the client