mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-19 11:14:06 +00:00
Setup pint & run code style fix
This commit is contained in:
@@ -4,7 +4,6 @@ namespace InvoiceShelf\Providers;
|
||||
|
||||
use Illuminate\Pagination\Paginator;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
use Illuminate\Support\Facades\Vite;
|
||||
use Illuminate\Support\ServiceProvider;
|
||||
|
||||
class AppServiceProvider extends ServiceProvider
|
||||
|
||||
@@ -2,6 +2,8 @@
|
||||
|
||||
namespace InvoiceShelf\Providers;
|
||||
|
||||
use Gate;
|
||||
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
|
||||
use InvoiceShelf\Policies\CompanyPolicy;
|
||||
use InvoiceShelf\Policies\CustomerPolicy;
|
||||
use InvoiceShelf\Policies\DashboardPolicy;
|
||||
@@ -17,8 +19,6 @@ use InvoiceShelf\Policies\RecurringInvoicePolicy;
|
||||
use InvoiceShelf\Policies\ReportPolicy;
|
||||
use InvoiceShelf\Policies\SettingsPolicy;
|
||||
use InvoiceShelf\Policies\UserPolicy;
|
||||
use Gate;
|
||||
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
|
||||
|
||||
class AuthServiceProvider extends ServiceProvider
|
||||
{
|
||||
|
||||
@@ -15,7 +15,7 @@ class BroadcastServiceProvider extends ServiceProvider
|
||||
public function boot()
|
||||
{
|
||||
Broadcast::routes();
|
||||
Broadcast::routes(["middleware" => 'api.auth']);
|
||||
Broadcast::routes(['middleware' => 'api.auth']);
|
||||
require base_path('routes/channels.php');
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user