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

File "FilesystemAdapterDecorator.php"

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

<?php

namespace Sentry\Laravel\Features\Storage;

trait FilesystemAdapterDecorator
{
    use CloudFilesystemDecorator;

    public function assertExists($path, $content = null)
    {
        [$description, $data] = $this->getDescriptionAndDataForPathOrPaths($path);

        return $this->withSentry(__FUNCTION__, func_get_args(), $description, $data);
    }

    public function assertMissing($path)
    {
        [$description, $data] = $this->getDescriptionAndDataForPathOrPaths($path);

        return $this->withSentry(__FUNCTION__, func_get_args(), $description, $data);
    }

    public function assertDirectoryEmpty($path)
    {
        return $this->withSentry(__FUNCTION__, func_get_args(), $path, compact('path'));
    }

    public function temporaryUrl($path, $expiration, array $options = [])
    {
        return $this->withSentry(__FUNCTION__, func_get_args(), $path, compact('path', 'expiration', 'options'));
    }

    public function temporaryUploadUrl($path, $expiration, array $options = [])
    {
        return $this->withSentry(__FUNCTION__, func_get_args(), $path, compact('path', 'expiration', 'options'));
    }
}