Skip to content

Commit

Permalink
Set the parameters list
Browse files Browse the repository at this point in the history
  • Loading branch information
caendesilva committed Jul 26, 2024
1 parent 986faed commit 0cb4e33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/framework/src/Support/V1Compatibility.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ trait V1Compatibility
* @deprecated Use MediaFile::sourcePath() instead.
* @see \Hyde\Support\Filesystem\MediaFile::sourcePath()
*/
#[Deprecated(reason: 'Use MediaFile::sourcePath() instead', replacement: '\Hyde\Support\Filesystem\MediaFile::sourcePath()')]
#[Deprecated(reason: 'Use MediaFile::sourcePath() instead', replacement: '\Hyde\Support\Filesystem\MediaFile::sourcePath(%parametersList%)')]
public static function mediaPath(string $path = ''): string
{
return MediaFile::sourcePath($path);
Expand All @@ -28,7 +28,7 @@ public static function mediaPath(string $path = ''): string
* @deprecated Use MediaFile::outputPath() instead.
* @see \Hyde\Support\Filesystem\MediaFile::outputPath()
*/
#[Deprecated(reason: 'Use MediaFile::outputPath() instead', replacement: '\Hyde\Support\Filesystem\MediaFile::outputPath()')]
#[Deprecated(reason: 'Use MediaFile::outputPath() instead', replacement: '\Hyde\Support\Filesystem\MediaFile::outputPath(%parametersList%)')]
public static function siteMediaPath(string $path = ''): string
{
return MediaFile::outputPath($path);
Expand Down

0 comments on commit 0cb4e33

Please sign in to comment.