|
@@ -19505,7 +19505,7 @@ namespace Illuminate\Support\Facades {
|
|
|
* Get a filesystem instance.
|
|
* Get a filesystem instance.
|
|
|
*
|
|
*
|
|
|
* @param string|null $name
|
|
* @param string|null $name
|
|
|
- * @return \Illuminate\Filesystem\LocalFilesystemAdapter
|
|
|
|
|
|
|
+ * @return \Illuminate\Filesystem\AwsS3V3Adapter
|
|
|
* @static
|
|
* @static
|
|
|
*/
|
|
*/
|
|
|
public static function drive($name = null)
|
|
public static function drive($name = null)
|
|
@@ -19518,7 +19518,7 @@ namespace Illuminate\Support\Facades {
|
|
|
* Get a filesystem instance.
|
|
* Get a filesystem instance.
|
|
|
*
|
|
*
|
|
|
* @param string|null $name
|
|
* @param string|null $name
|
|
|
- * @return \Illuminate\Filesystem\LocalFilesystemAdapter
|
|
|
|
|
|
|
+ * @return \Illuminate\Filesystem\AwsS3V3Adapter
|
|
|
* @static
|
|
* @static
|
|
|
*/
|
|
*/
|
|
|
public static function disk($name = null)
|
|
public static function disk($name = null)
|
|
@@ -19543,7 +19543,7 @@ namespace Illuminate\Support\Facades {
|
|
|
* Build an on-demand disk.
|
|
* Build an on-demand disk.
|
|
|
*
|
|
*
|
|
|
* @param string|array $config
|
|
* @param string|array $config
|
|
|
- * @return \Illuminate\Filesystem\LocalFilesystemAdapter
|
|
|
|
|
|
|
+ * @return \Illuminate\Filesystem\AwsS3V3Adapter
|
|
|
* @static
|
|
* @static
|
|
|
*/
|
|
*/
|
|
|
public static function build($config)
|
|
public static function build($config)
|
|
@@ -19557,7 +19557,7 @@ namespace Illuminate\Support\Facades {
|
|
|
*
|
|
*
|
|
|
* @param array $config
|
|
* @param array $config
|
|
|
* @param string $name
|
|
* @param string $name
|
|
|
- * @return \Illuminate\Filesystem\LocalFilesystemAdapter
|
|
|
|
|
|
|
+ * @return \Illuminate\Filesystem\AwsS3V3Adapter
|
|
|
* @static
|
|
* @static
|
|
|
*/
|
|
*/
|
|
|
public static function createLocalDriver($config, $name = 'local')
|
|
public static function createLocalDriver($config, $name = 'local')
|
|
@@ -19570,7 +19570,7 @@ namespace Illuminate\Support\Facades {
|
|
|
* Create an instance of the ftp driver.
|
|
* Create an instance of the ftp driver.
|
|
|
*
|
|
*
|
|
|
* @param array $config
|
|
* @param array $config
|
|
|
- * @return \Illuminate\Filesystem\LocalFilesystemAdapter
|
|
|
|
|
|
|
+ * @return \Illuminate\Filesystem\AwsS3V3Adapter
|
|
|
* @static
|
|
* @static
|
|
|
*/
|
|
*/
|
|
|
public static function createFtpDriver($config)
|
|
public static function createFtpDriver($config)
|
|
@@ -19583,7 +19583,7 @@ namespace Illuminate\Support\Facades {
|
|
|
* Create an instance of the sftp driver.
|
|
* Create an instance of the sftp driver.
|
|
|
*
|
|
*
|
|
|
* @param array $config
|
|
* @param array $config
|
|
|
- * @return \Illuminate\Filesystem\LocalFilesystemAdapter
|
|
|
|
|
|
|
+ * @return \Illuminate\Filesystem\AwsS3V3Adapter
|
|
|
* @static
|
|
* @static
|
|
|
*/
|
|
*/
|
|
|
public static function createSftpDriver($config)
|
|
public static function createSftpDriver($config)
|
|
@@ -19609,7 +19609,7 @@ namespace Illuminate\Support\Facades {
|
|
|
* Create a scoped driver.
|
|
* Create a scoped driver.
|
|
|
*
|
|
*
|
|
|
* @param array $config
|
|
* @param array $config
|
|
|
- * @return \Illuminate\Filesystem\LocalFilesystemAdapter
|
|
|
|
|
|
|
+ * @return \Illuminate\Filesystem\AwsS3V3Adapter
|
|
|
* @static
|
|
* @static
|
|
|
*/
|
|
*/
|
|
|
public static function createScopedDriver($config)
|
|
public static function createScopedDriver($config)
|
|
@@ -19709,6 +19709,20 @@ namespace Illuminate\Support\Facades {
|
|
|
return $instance->setApplication($app);
|
|
return $instance->setApplication($app);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * Get the URL for the file at the given path.
|
|
|
|
|
+ *
|
|
|
|
|
+ * @param string $path
|
|
|
|
|
+ * @return string
|
|
|
|
|
+ * @throws \RuntimeException
|
|
|
|
|
+ * @static
|
|
|
|
|
+ */
|
|
|
|
|
+ public static function url($path)
|
|
|
|
|
+ {
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
|
|
+ return $instance->url($path);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* Determine if temporary URLs can be generated.
|
|
* Determine if temporary URLs can be generated.
|
|
|
*
|
|
*
|
|
@@ -19717,7 +19731,7 @@ namespace Illuminate\Support\Facades {
|
|
|
*/
|
|
*/
|
|
|
public static function providesTemporaryUrls()
|
|
public static function providesTemporaryUrls()
|
|
|
{
|
|
{
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->providesTemporaryUrls();
|
|
return $instance->providesTemporaryUrls();
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -19732,35 +19746,35 @@ namespace Illuminate\Support\Facades {
|
|
|
*/
|
|
*/
|
|
|
public static function temporaryUrl($path, $expiration, $options = [])
|
|
public static function temporaryUrl($path, $expiration, $options = [])
|
|
|
{
|
|
{
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->temporaryUrl($path, $expiration, $options);
|
|
return $instance->temporaryUrl($path, $expiration, $options);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
- * Specify the name of the disk the adapter is managing.
|
|
|
|
|
|
|
+ * Get a temporary upload URL for the file at the given path.
|
|
|
*
|
|
*
|
|
|
- * @param string $disk
|
|
|
|
|
- * @return \Illuminate\Filesystem\LocalFilesystemAdapter
|
|
|
|
|
|
|
+ * @param string $path
|
|
|
|
|
+ * @param \DateTimeInterface $expiration
|
|
|
|
|
+ * @param array $options
|
|
|
|
|
+ * @return array
|
|
|
* @static
|
|
* @static
|
|
|
*/
|
|
*/
|
|
|
- public static function diskName($disk)
|
|
|
|
|
|
|
+ public static function temporaryUploadUrl($path, $expiration, $options = [])
|
|
|
{
|
|
{
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
- return $instance->diskName($disk);
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
|
|
+ return $instance->temporaryUploadUrl($path, $expiration, $options);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
- * Indicate that signed URLs should serve the corresponding files.
|
|
|
|
|
|
|
+ * Get the underlying S3 client.
|
|
|
*
|
|
*
|
|
|
- * @param bool $serve
|
|
|
|
|
- * @param \Closure|null $urlGeneratorResolver
|
|
|
|
|
- * @return \Illuminate\Filesystem\LocalFilesystemAdapter
|
|
|
|
|
|
|
+ * @return \Aws\S3\S3Client
|
|
|
* @static
|
|
* @static
|
|
|
*/
|
|
*/
|
|
|
- public static function shouldServeSignedUrls($serve = true, $urlGeneratorResolver = null)
|
|
|
|
|
|
|
+ public static function getClient()
|
|
|
{
|
|
{
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
- return $instance->shouldServeSignedUrls($serve, $urlGeneratorResolver);
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
|
|
+ return $instance->getClient();
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -19768,13 +19782,13 @@ namespace Illuminate\Support\Facades {
|
|
|
*
|
|
*
|
|
|
* @param string|array $path
|
|
* @param string|array $path
|
|
|
* @param string|null $content
|
|
* @param string|null $content
|
|
|
- * @return \Illuminate\Filesystem\LocalFilesystemAdapter
|
|
|
|
|
|
|
+ * @return \Illuminate\Filesystem\AwsS3V3Adapter
|
|
|
* @static
|
|
* @static
|
|
|
*/
|
|
*/
|
|
|
public static function assertExists($path, $content = null)
|
|
public static function assertExists($path, $content = null)
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->assertExists($path, $content);
|
|
return $instance->assertExists($path, $content);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -19784,13 +19798,13 @@ namespace Illuminate\Support\Facades {
|
|
|
* @param string $path
|
|
* @param string $path
|
|
|
* @param int $count
|
|
* @param int $count
|
|
|
* @param bool $recursive
|
|
* @param bool $recursive
|
|
|
- * @return \Illuminate\Filesystem\LocalFilesystemAdapter
|
|
|
|
|
|
|
+ * @return \Illuminate\Filesystem\AwsS3V3Adapter
|
|
|
* @static
|
|
* @static
|
|
|
*/
|
|
*/
|
|
|
public static function assertCount($path, $count, $recursive = false)
|
|
public static function assertCount($path, $count, $recursive = false)
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->assertCount($path, $count, $recursive);
|
|
return $instance->assertCount($path, $count, $recursive);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -19798,13 +19812,13 @@ namespace Illuminate\Support\Facades {
|
|
|
* Assert that the given file or directory does not exist.
|
|
* Assert that the given file or directory does not exist.
|
|
|
*
|
|
*
|
|
|
* @param string|array $path
|
|
* @param string|array $path
|
|
|
- * @return \Illuminate\Filesystem\LocalFilesystemAdapter
|
|
|
|
|
|
|
+ * @return \Illuminate\Filesystem\AwsS3V3Adapter
|
|
|
* @static
|
|
* @static
|
|
|
*/
|
|
*/
|
|
|
public static function assertMissing($path)
|
|
public static function assertMissing($path)
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->assertMissing($path);
|
|
return $instance->assertMissing($path);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -19812,13 +19826,13 @@ namespace Illuminate\Support\Facades {
|
|
|
* Assert that the given directory is empty.
|
|
* Assert that the given directory is empty.
|
|
|
*
|
|
*
|
|
|
* @param string $path
|
|
* @param string $path
|
|
|
- * @return \Illuminate\Filesystem\LocalFilesystemAdapter
|
|
|
|
|
|
|
+ * @return \Illuminate\Filesystem\AwsS3V3Adapter
|
|
|
* @static
|
|
* @static
|
|
|
*/
|
|
*/
|
|
|
public static function assertDirectoryEmpty($path)
|
|
public static function assertDirectoryEmpty($path)
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->assertDirectoryEmpty($path);
|
|
return $instance->assertDirectoryEmpty($path);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -19832,7 +19846,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function exists($path)
|
|
public static function exists($path)
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->exists($path);
|
|
return $instance->exists($path);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -19846,7 +19860,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function missing($path)
|
|
public static function missing($path)
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->missing($path);
|
|
return $instance->missing($path);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -19860,7 +19874,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function fileExists($path)
|
|
public static function fileExists($path)
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->fileExists($path);
|
|
return $instance->fileExists($path);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -19874,7 +19888,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function fileMissing($path)
|
|
public static function fileMissing($path)
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->fileMissing($path);
|
|
return $instance->fileMissing($path);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -19888,7 +19902,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function directoryExists($path)
|
|
public static function directoryExists($path)
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->directoryExists($path);
|
|
return $instance->directoryExists($path);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -19902,7 +19916,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function directoryMissing($path)
|
|
public static function directoryMissing($path)
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->directoryMissing($path);
|
|
return $instance->directoryMissing($path);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -19916,7 +19930,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function path($path)
|
|
public static function path($path)
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->path($path);
|
|
return $instance->path($path);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -19930,7 +19944,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function get($path)
|
|
public static function get($path)
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->get($path);
|
|
return $instance->get($path);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -19945,7 +19959,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function json($path, $flags = 0)
|
|
public static function json($path, $flags = 0)
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->json($path, $flags);
|
|
return $instance->json($path, $flags);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -19962,7 +19976,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function response($path, $name = null, $headers = [], $disposition = 'inline')
|
|
public static function response($path, $name = null, $headers = [], $disposition = 'inline')
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->response($path, $name, $headers, $disposition);
|
|
return $instance->response($path, $name, $headers, $disposition);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -19979,7 +19993,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function serve($request, $path, $name = null, $headers = [])
|
|
public static function serve($request, $path, $name = null, $headers = [])
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->serve($request, $path, $name, $headers);
|
|
return $instance->serve($request, $path, $name, $headers);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -19995,7 +20009,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function download($path, $name = null, $headers = [])
|
|
public static function download($path, $name = null, $headers = [])
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->download($path, $name, $headers);
|
|
return $instance->download($path, $name, $headers);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -20011,7 +20025,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function put($path, $contents, $options = [])
|
|
public static function put($path, $contents, $options = [])
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->put($path, $contents, $options);
|
|
return $instance->put($path, $contents, $options);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -20027,7 +20041,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function putFile($path, $file = null, $options = [])
|
|
public static function putFile($path, $file = null, $options = [])
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->putFile($path, $file, $options);
|
|
return $instance->putFile($path, $file, $options);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -20044,7 +20058,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function putFileAs($path, $file, $name = null, $options = [])
|
|
public static function putFileAs($path, $file, $name = null, $options = [])
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->putFileAs($path, $file, $name, $options);
|
|
return $instance->putFileAs($path, $file, $name, $options);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -20058,7 +20072,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function getVisibility($path)
|
|
public static function getVisibility($path)
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->getVisibility($path);
|
|
return $instance->getVisibility($path);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -20073,7 +20087,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function setVisibility($path, $visibility)
|
|
public static function setVisibility($path, $visibility)
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->setVisibility($path, $visibility);
|
|
return $instance->setVisibility($path, $visibility);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -20090,7 +20104,7 @@ namespace Illuminate\Support\Facades {
|
|
|
')
|
|
')
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->prepend($path, $data, $separator);
|
|
return $instance->prepend($path, $data, $separator);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -20107,7 +20121,7 @@ namespace Illuminate\Support\Facades {
|
|
|
')
|
|
')
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->append($path, $data, $separator);
|
|
return $instance->append($path, $data, $separator);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -20121,7 +20135,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function delete($paths)
|
|
public static function delete($paths)
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->delete($paths);
|
|
return $instance->delete($paths);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -20136,7 +20150,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function copy($from, $to)
|
|
public static function copy($from, $to)
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->copy($from, $to);
|
|
return $instance->copy($from, $to);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -20151,7 +20165,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function move($from, $to)
|
|
public static function move($from, $to)
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->move($from, $to);
|
|
return $instance->move($from, $to);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -20165,7 +20179,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function size($path)
|
|
public static function size($path)
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->size($path);
|
|
return $instance->size($path);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -20179,7 +20193,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function checksum($path, $options = [])
|
|
public static function checksum($path, $options = [])
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->checksum($path, $options);
|
|
return $instance->checksum($path, $options);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -20193,7 +20207,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function mimeType($path)
|
|
public static function mimeType($path)
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->mimeType($path);
|
|
return $instance->mimeType($path);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -20207,7 +20221,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function lastModified($path)
|
|
public static function lastModified($path)
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->lastModified($path);
|
|
return $instance->lastModified($path);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -20221,7 +20235,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function readStream($path)
|
|
public static function readStream($path)
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->readStream($path);
|
|
return $instance->readStream($path);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -20237,42 +20251,10 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function writeStream($path, $resource, $options = [])
|
|
public static function writeStream($path, $resource, $options = [])
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->writeStream($path, $resource, $options);
|
|
return $instance->writeStream($path, $resource, $options);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- /**
|
|
|
|
|
- * Get the URL for the file at the given path.
|
|
|
|
|
- *
|
|
|
|
|
- * @param string $path
|
|
|
|
|
- * @return string
|
|
|
|
|
- * @throws \RuntimeException
|
|
|
|
|
- * @static
|
|
|
|
|
- */
|
|
|
|
|
- public static function url($path)
|
|
|
|
|
- {
|
|
|
|
|
- //Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
- return $instance->url($path);
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- /**
|
|
|
|
|
- * Get a temporary upload URL for the file at the given path.
|
|
|
|
|
- *
|
|
|
|
|
- * @param string $path
|
|
|
|
|
- * @param \DateTimeInterface $expiration
|
|
|
|
|
- * @param array $options
|
|
|
|
|
- * @return array
|
|
|
|
|
- * @throws \RuntimeException
|
|
|
|
|
- * @static
|
|
|
|
|
- */
|
|
|
|
|
- public static function temporaryUploadUrl($path, $expiration, $options = [])
|
|
|
|
|
- {
|
|
|
|
|
- //Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
- return $instance->temporaryUploadUrl($path, $expiration, $options);
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
/**
|
|
/**
|
|
|
* Get an array of all files in a directory.
|
|
* Get an array of all files in a directory.
|
|
|
*
|
|
*
|
|
@@ -20284,7 +20266,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function files($directory = null, $recursive = false)
|
|
public static function files($directory = null, $recursive = false)
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->files($directory, $recursive);
|
|
return $instance->files($directory, $recursive);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -20298,7 +20280,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function allFiles($directory = null)
|
|
public static function allFiles($directory = null)
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->allFiles($directory);
|
|
return $instance->allFiles($directory);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -20313,7 +20295,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function directories($directory = null, $recursive = false)
|
|
public static function directories($directory = null, $recursive = false)
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->directories($directory, $recursive);
|
|
return $instance->directories($directory, $recursive);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -20327,7 +20309,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function allDirectories($directory = null)
|
|
public static function allDirectories($directory = null)
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->allDirectories($directory);
|
|
return $instance->allDirectories($directory);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -20341,7 +20323,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function makeDirectory($path)
|
|
public static function makeDirectory($path)
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->makeDirectory($path);
|
|
return $instance->makeDirectory($path);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -20355,7 +20337,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function deleteDirectory($directory)
|
|
public static function deleteDirectory($directory)
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->deleteDirectory($directory);
|
|
return $instance->deleteDirectory($directory);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -20368,7 +20350,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function getDriver()
|
|
public static function getDriver()
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->getDriver();
|
|
return $instance->getDriver();
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -20381,7 +20363,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function getAdapter()
|
|
public static function getAdapter()
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->getAdapter();
|
|
return $instance->getAdapter();
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -20394,7 +20376,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function getConfig()
|
|
public static function getConfig()
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->getConfig();
|
|
return $instance->getConfig();
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -20408,7 +20390,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function serveUsing($callback)
|
|
public static function serveUsing($callback)
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
$instance->serveUsing($callback);
|
|
$instance->serveUsing($callback);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -20422,7 +20404,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function buildTemporaryUrlsUsing($callback)
|
|
public static function buildTemporaryUrlsUsing($callback)
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
$instance->buildTemporaryUrlsUsing($callback);
|
|
$instance->buildTemporaryUrlsUsing($callback);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -20439,7 +20421,7 @@ namespace Illuminate\Support\Facades {
|
|
|
*/
|
|
*/
|
|
|
public static function when($value = null, $callback = null, $default = null)
|
|
public static function when($value = null, $callback = null, $default = null)
|
|
|
{
|
|
{
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->when($value, $callback, $default);
|
|
return $instance->when($value, $callback, $default);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -20456,7 +20438,7 @@ namespace Illuminate\Support\Facades {
|
|
|
*/
|
|
*/
|
|
|
public static function unless($value = null, $callback = null, $default = null)
|
|
public static function unless($value = null, $callback = null, $default = null)
|
|
|
{
|
|
{
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->unless($value, $callback, $default);
|
|
return $instance->unless($value, $callback, $default);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -20472,7 +20454,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function macro($name, $macro)
|
|
public static function macro($name, $macro)
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- \Illuminate\Filesystem\LocalFilesystemAdapter::macro($name, $macro);
|
|
|
|
|
|
|
+ \Illuminate\Filesystem\AwsS3V3Adapter::macro($name, $macro);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -20487,7 +20469,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function mixin($mixin, $replace = true)
|
|
public static function mixin($mixin, $replace = true)
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- \Illuminate\Filesystem\LocalFilesystemAdapter::mixin($mixin, $replace);
|
|
|
|
|
|
|
+ \Illuminate\Filesystem\AwsS3V3Adapter::mixin($mixin, $replace);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -20500,7 +20482,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function hasMacro($name)
|
|
public static function hasMacro($name)
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- return \Illuminate\Filesystem\LocalFilesystemAdapter::hasMacro($name);
|
|
|
|
|
|
|
+ return \Illuminate\Filesystem\AwsS3V3Adapter::hasMacro($name);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -20512,7 +20494,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function flushMacros()
|
|
public static function flushMacros()
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- \Illuminate\Filesystem\LocalFilesystemAdapter::flushMacros();
|
|
|
|
|
|
|
+ \Illuminate\Filesystem\AwsS3V3Adapter::flushMacros();
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -20527,7 +20509,7 @@ namespace Illuminate\Support\Facades {
|
|
|
public static function macroCall($method, $parameters)
|
|
public static function macroCall($method, $parameters)
|
|
|
{
|
|
{
|
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
//Method inherited from \Illuminate\Filesystem\FilesystemAdapter
|
|
|
- /** @var \Illuminate\Filesystem\LocalFilesystemAdapter $instance */
|
|
|
|
|
|
|
+ /** @var \Illuminate\Filesystem\AwsS3V3Adapter $instance */
|
|
|
return $instance->macroCall($method, $parameters);
|
|
return $instance->macroCall($method, $parameters);
|
|
|
}
|
|
}
|
|
|
|
|
|