Diff: STRATO-apps/wordpress_03/app/wp-includes/SimplePie/library/SimplePie/Enclosure.php
Keine Baseline-Datei – Diff nur gegen leer.
1
-
1
+
<?php
2
+
3
+
// SPDX-FileCopyrightText: 2004-2023 Ryan Parman, Sam Sneddon, Ryan McCue
4
+
// SPDX-License-Identifier: BSD-3-Clause
5
+
6
+
declare(strict_types=1);
7
+
8
+
use SimplePie\Enclosure;
9
+
10
+
class_exists('SimplePie\Enclosure');
11
+
12
+
// @trigger_error(sprintf('Using the "SimplePie_Enclosure" class is deprecated since SimplePie 1.7.0, use "SimplePie\Enclosure" instead.'), \E_USER_DEPRECATED);
13
+
14
+
/** @phpstan-ignore-next-line */
15
+
if (\false) {
16
+
/** @deprecated since SimplePie 1.7.0, use "SimplePie\Enclosure" instead */
17
+
class SimplePie_Enclosure extends Enclosure
18
+
{
19
+
}
20
+
}
21
+