Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Mar 25, 2024
1 parent 3a903cd commit d5cdc34
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/app/Http/Controllers/BackupController.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,13 @@

namespace Backpack\BackupManager\app\Http\Controllers;


use Carbon\Carbon;
use \Exception;
use Exception;
use Illuminate\Http\Request;
use Illuminate\Routing\Controller;
use Illuminate\Support\Facades\Artisan;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\Facades\Storage;
use Illuminate\Http\Request;
use League\Flysystem\Local\LocalFilesystemAdapter;

class BackupController extends Controller
Expand All @@ -18,7 +17,7 @@ class BackupController extends Controller

public function index()
{
if (! count(config('backup.backup.destination.disks'))) {
if (!count(config('backup.backup.destination.disks'))) {
abort(500, trans('backpack::backup.no_disks_configured'));
}

Expand Down

0 comments on commit d5cdc34

Please sign in to comment.