run:R W Run
565 By
2026-03-11 16:18:52
R W Run
error_log
📄Date.php
1<?php
2
3// SPDX-FileCopyrightText: 2004-2023 Ryan Parman, Sam Sneddon, Ryan McCue
4// SPDX-License-Identifier: BSD-3-Clause
5
6declare(strict_types=1);
7
8use SimplePie\Parse\Date;
9
10class_exists('SimplePie\Parse\Date');
11
12// @trigger_error(sprintf('Using the "SimplePie_Parse_Date" class is deprecated since SimplePie 1.7.0, use "SimplePie\Parse\Date" instead.'), \E_USER_DEPRECATED);
13
14/** @phpstan-ignore-next-line */
15if (\false) {
16 /** @deprecated since SimplePie 1.7.0, use "SimplePie\Parse\Date" instead */
17 class SimplePie_Parse_Date extends Date
18 {
19 }
20}
21