File "CloudFilesystemDecorator.php"
Full Path: /var/www/drive/sentry/sentry-laravel/src/Sentry/Laravel/Features/CloudFilesystemDecorator.php
File size: 248 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Sentry\Laravel\Features\Storage;
trait CloudFilesystemDecorator
{
use FilesystemDecorator;
public function url($path)
{
return $this->withSentry(__FUNCTION__, func_get_args(), $path, compact('path'));
}
}