File "SentryFilesystem.php"
Full Path: /var/www/drive/sentry/sentry-laravel/src/Sentry/Laravel/Http/SentryFilesystem.php
File size: 493 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Sentry\Laravel\Features\Storage;
use Illuminate\Contracts\Filesystem\Filesystem;
class SentryFilesystem implements Filesystem
{
use FilesystemDecorator;
public function __construct(Filesystem $filesystem, array $defaultData, bool $recordSpans, bool $recordBreadcrumbs)
{
$this->filesystem = $filesystem;
$this->defaultData = $defaultData;
$this->recordSpans = $recordSpans;
$this->recordBreadcrumbs = $recordBreadcrumbs;
}
}