mirror of
https://github.com/pelican-dev/panel.git
synced 2026-05-04 18:00:48 +03:00
Pint
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user