JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3RbrFILE ON : __baf654/index.php gilour

File "SentryFilesystemAdapter.php"

Full Path: /var/www/drive/sentry/sentry-laravel/src/Sentry/Laravel/Features/Storage/SentryFilesystemAdapter.php
File size: 624 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Sentry\Laravel\Features\Storage;

use Illuminate\Filesystem\FilesystemAdapter;

class SentryFilesystemAdapter extends FilesystemAdapter
{
    use FilesystemAdapterDecorator;

    public function __construct(FilesystemAdapter $filesystem, array $defaultData, bool $recordSpans, bool $recordBreadcrumbs)
    {
        parent::__construct($filesystem->getDriver(), $filesystem->getAdapter(), $filesystem->getConfig());

        $this->filesystem = $filesystem;
        $this->defaultData = $defaultData;
        $this->recordSpans = $recordSpans;
        $this->recordBreadcrumbs = $recordBreadcrumbs;
    }
}