File "UninstallAction.php"

Full Path: /var/www/html/back/vendor/laravel/telescope/src/Actions/UninstallAction.php
File size: 347 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Laravel\Telescope\Actions;

use Illuminate\Support\ServiceProvider;

class UninstallAction
{
    public function handle(): void
    {
        if (method_exists(ServiceProvider::class, 'removeProviderFromBootstrapFile')) {
            ServiceProvider::removeProviderFromBootstrapFile('TelescopeServiceProvider');
        }
    }
}