8000 Merge branch 'main' of github.com:NativePHP/laravel · NativePHP/laravel@f3d8e3d · GitHub
[go: up one dir, main page]

Skip to content

Commit f3d8e3d

10000
Browse files
committed
Merge branch 'main' of github.com:NativePHP/laravel
2 parents 8d0ca9d + ac3decf commit f3d8e3d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

routes/api.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?php
22

3-
use Illuminate\Support\Facades\Route;
43
use App\Http\Middleware\VerifyCsrfToken;
5-
use Native\Laravel\Http\Controllers\NativeAppBootedController;
6-
use Native\Laravel\Http\Middleware\PreventRegularBrowserAccess;
4+
use Illuminate\Support\Facades\Route;
75
use Native\Laravel\Http\Controllers\CreateSecurityCookieController;
86
use Native\Laravel\Http\Controllers\DispatchEventFromAppController;
7+
use Native\Laravel\Http\Controllers\NativeAppBootedController;
8+
use Native\Laravel\Http\Middleware\PreventRegularBrowserAccess;
99

1010
Route::group(['middleware' => PreventRegularBrowserAccess::class], function () {
1111
Route::post('_native/api/booted', NativeAppBootedController::class);

src/Dialog.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ public function open()
125125
{
126126
$result = $this->client->post('dialog/open', $this->dialogData())->json('result');
127127

128-
if (!in_array('multiSelections', $this->properties)) {
128+
if (! in_array('multiSelections', $this->properties)) {
129129
return $result[0] ?? null;
130130
}
131131

0 commit comments

Comments
 (0)
0