Skip to content

Commit c4fadf1

Browse files
author
Pantea Marius-ciclistu
committed
Revert Track filesystem adapter decoration #57167
1 parent f1db513 commit c4fadf1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

illuminate/Filesystem/FilesystemManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ function (&$parent) use ($config) {
329329
* @param array $config
330330
* @return \League\Flysystem\FilesystemOperator
331331
*/
332-
protected function createFlysystem(FlysystemAdapter &$adapter, array $config)
332+
protected function createFlysystem(FlysystemAdapter $adapter, array $config)
333333
{
334334
if (($config['read-only'] ?? false) === true) {
335335
$adapter = new ReadOnlyFilesystemAdapter($adapter);

illuminate/Foundation/Application.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class Application extends Container implements
4444
*
4545
* @var string
4646
*/
47-
public const VERSION = '10.51.14';
47+
public const VERSION = '10.51.15';
4848

4949
/**
5050
* The base path for the Laravel installation.

src/Application.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ public function bootstrapRouter()
169169
*/
170170
public function version()
171171
{
172-
return 'Maravel Framework 10.51.14';
172+
return 'Maravel Framework 10.51.15';
173173
}
174174

175175
/**

0 commit comments

Comments
 (0)