Skip to content

Commit 3616836

Browse files
committed
Remove deprecated method FeaturedImage::isRemote()
Tie in with #1882
1 parent da5ef06 commit 3616836

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

packages/framework/src/Framework/Features/Blogging/Models/FeaturedImage.php

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
use Hyde\Facades\Config;
1010
use Illuminate\Support\Str;
1111
use Hyde\Support\BuildWarnings;
12-
use JetBrains\PhpStorm\Deprecated;
1312
use Illuminate\Support\Facades\Http;
1413
use Hyde\Foundation\Kernel\Hyperlinks;
1514
use Hyde\Framework\Exceptions\FileNotFoundException;
@@ -241,15 +240,4 @@ protected function getContentLengthForRemoteImage(): int
241240

242241
return 0;
243242
}
244-
245-
/**
246-
* @codeCoverageIgnore Deprecated method.
247-
*
248-
* @deprecated This method will be removed in v2.0. Please use `Hyperlinks::isRemote` instead.
249-
*/
250-
#[Deprecated(reason: 'Replaced by the \Hyde\Foundation\Kernel\Hyperlinks::isRemote method', replacement: '\Hyde\Foundation\Kernel\Hyperlinks::isRemote(%parametersList%)', since: '1.8.0')]
251-
public static function isRemote(string $source): bool
252-
{
253-
return Hyperlinks::isRemote($source);
254-
}
255243
}

0 commit comments

Comments
 (0)