The rescue function executes the given closure and catches any exceptions that occur during its execution. All exceptions that are caught will be sent to your exception handler; however, the request will continue processing:
<?php return rescue(function () {
    return $this->method();
});
<?php         if (app()->runningUnitTests()) {



            rescue(function () {



                return Storage::disk(static::disk());

            }, function () {

                return Storage::fake(static::disk());

            });

        }



        return Storage::disk(static::disk());