add missing semicolon

This commit is contained in:
Linus Metzler 2021-09-19 14:51:46 +02:00 committed by Linus Metzler
parent 3cc09f7331
commit c7c7feaf9d
No known key found for this signature in database
GPG Key ID: 4D7286A917605267
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