References: * [https://github.com/simplepie/simplepie/releases/tag/1.9.0 SimplePie 1.9.0 release notes] * [https://github.com/simplepie/simplepie/compare/1.8.1...1.9.0 Full list of changes in SimplePie 1.9.0] Follow-up to [59141], [60490]. Props swissspidy, TobiasBg, SergeyBiryukov. Fixes #63961. Built from https://develop.svn.wordpress.org/trunk@60771 git-svn-id: http://core.svn.wordpress.org/trunk@60107 1a063a9b-81f0-0310-95a4-ce76da25c4cd
21 lines
543 B
PHP
21 lines
543 B
PHP
<?php
|
|
|
|
// SPDX-FileCopyrightText: 2004-2023 Ryan Parman, Sam Sneddon, Ryan McCue
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
declare(strict_types=1);
|
|
|
|
use SimplePie\Credit;
|
|
|
|
class_exists('SimplePie\Credit');
|
|
|
|
// @trigger_error(sprintf('Using the "SimplePie_Credit" class is deprecated since SimplePie 1.7.0, use "SimplePie\Credit" instead.'), \E_USER_DEPRECATED);
|
|
|
|
/** @phpstan-ignore-next-line */
|
|
if (\false) {
|
|
/** @deprecated since SimplePie 1.7.0, use "SimplePie\Credit" instead */
|
|
class SimplePie_Credit extends Credit
|
|
{
|
|
}
|
|
}
|