Skip to content

Commit

Permalink
Fixes PHP 7.2 support
Browse files Browse the repository at this point in the history
  • Loading branch information
nunomaduro committed May 12, 2022
1 parent c164a08 commit 5340a42
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Aws/AwsStorageProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public function executeStoreRequests($requests, $assetPath, $callback)
$request['headers'],
['Cache-Control' => 'public, max-age=31536000']
),
$request['stream'],
$request['stream']
);
}
};
Expand Down
2 changes: 1 addition & 1 deletion src/ServeAssets.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public function __invoke(ConsoleVaporClient $vapor, array $artifact, $fresh)
$vapor,
$artifact,
$chunkOfAssetFiles,
$fresh,
$fresh
);

$this->executeStoreAssetRequests($requests['store'], $assetPath);
Expand Down

0 comments on commit 5340a42

Please sign in to comment.