mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 13:24:46 +02:00
Pint
This commit is contained in:
parent
c7a307af6e
commit
38be89a71e
@ -101,7 +101,7 @@ class EditDatabaseHost extends EditRecord
|
||||
|
||||
protected function handleRecordUpdate(Model $record, array $data): Model
|
||||
{
|
||||
if (! $record instanceof DatabaseHost) {
|
||||
if (!$record instanceof DatabaseHost) {
|
||||
return $record;
|
||||
}
|
||||
|
||||
|
@ -278,7 +278,7 @@ class EditProfile extends \Filament\Pages\Auth\EditProfile
|
||||
|
||||
protected function handleRecordUpdate(Model $record, array $data): Model
|
||||
{
|
||||
if (! $record instanceof User) {
|
||||
if (!$record instanceof User) {
|
||||
return $record;
|
||||
}
|
||||
|
||||
|
@ -28,8 +28,6 @@ class ForgotPasswordController extends Controller
|
||||
|
||||
/**
|
||||
* Get the response for a successful password reset link.
|
||||
*
|
||||
* @param string $response
|
||||
*/
|
||||
protected function sendResetLinkResponse(Request $request, string $response): JsonResponse
|
||||
{
|
||||
|
@ -5,7 +5,6 @@ namespace App\Models;
|
||||
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
||||
use Illuminate\Database\Eloquent\Relations\MorphTo;
|
||||
use Illuminate\Database\Eloquent\Relations\Pivot;
|
||||
use Illuminate\Database\Eloquent\SoftDeletes;
|
||||
use Illuminate\Database\Eloquent\SoftDeletingScope;
|
||||
|
||||
/**
|
||||
|
@ -40,8 +40,6 @@ abstract class IntegrationTestCase extends TestCase
|
||||
|
||||
/**
|
||||
* The database connections that should have transactions.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
protected function connectionsToTransact(): array
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user