8000 Fix styling · NativePHP/laravel@ac3decf · GitHub
[go: up one dir, main page]

Skip to content

Commit ac3decf

Browse files
mpociotgithub-actions[bot]
authored andcommitted
Fix styling
1 parent bd03a50 commit ac3decf

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
@@ -137,7 +137,7 @@ public function open()
137137
{
138138
$result = $this->client->post('dialog/open', $this->dataArray())->json('result');
139139

140-
if (!in_array('multiSelections', $this->properties)) {
140+
if (! in_array('multiSelections', $this->properties)) {
141141
return $result[0] ?? null;
142142
}
143143

0 commit comments

Comments
 (0)
0