From ac3decf1069b562837844a50f1d9567d0f251e7e Mon Sep 17 00:00:00 2001 From: mpociot Date: Thu, 3 Aug 2023 22:46:59 +0000 Subject: [PATCH] Fix styling --- routes/api.php | 6 +++--- src/Dialog.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/routes/api.php b/routes/api.php index 59f0837..18df0ab 100644 --- a/routes/api.php +++ b/routes/api.php @@ -1,11 +1,11 @@ PreventRegularBrowserAccess::class], function () { Route::post('_native/api/booted', NativeAppBootedController::class); diff --git a/src/Dialog.php b/src/Dialog.php index fb7f89c..346173e 100644 --- a/src/Dialog.php +++ b/src/Dialog.php @@ -137,7 +137,7 @@ public function open() { $result = $this->client->post('dialog/open', $this->dataArray())->json('result'); - if (!in_array('multiSelections', $this->properties)) { + if (! in_array('multiSelections', $this->properties)) { return $result[0] ?? null; }