159b616ccSAndreas Gohr<?php 2*2afbbbaeSAndreas Gohr 359b616ccSAndreas Gohr/** 459b616ccSAndreas Gohr * SimplePie 559b616ccSAndreas Gohr * 659b616ccSAndreas Gohr * A PHP-Based RSS and Atom Feed Framework. 759b616ccSAndreas Gohr * Takes the hard work out of managing a complete RSS/Atom solution. 859b616ccSAndreas Gohr * 9*2afbbbaeSAndreas Gohr * Copyright (c) 2004-2022, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors 1059b616ccSAndreas Gohr * All rights reserved. 1159b616ccSAndreas Gohr * 1259b616ccSAndreas Gohr * Redistribution and use in source and binary forms, with or without modification, are 1359b616ccSAndreas Gohr * permitted provided that the following conditions are met: 1459b616ccSAndreas Gohr * 1559b616ccSAndreas Gohr * * Redistributions of source code must retain the above copyright notice, this list of 1659b616ccSAndreas Gohr * conditions and the following disclaimer. 1759b616ccSAndreas Gohr * 1859b616ccSAndreas Gohr * * Redistributions in binary form must reproduce the above copyright notice, this list 1959b616ccSAndreas Gohr * of conditions and the following disclaimer in the documentation and/or other materials 2059b616ccSAndreas Gohr * provided with the distribution. 2159b616ccSAndreas Gohr * 2259b616ccSAndreas Gohr * * Neither the name of the SimplePie Team nor the names of its contributors may be used 2359b616ccSAndreas Gohr * to endorse or promote products derived from this software without specific prior 2459b616ccSAndreas Gohr * written permission. 2559b616ccSAndreas Gohr * 2659b616ccSAndreas Gohr * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS 2759b616ccSAndreas Gohr * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY 2859b616ccSAndreas Gohr * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS 2959b616ccSAndreas Gohr * AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 3059b616ccSAndreas Gohr * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 3159b616ccSAndreas Gohr * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 3259b616ccSAndreas Gohr * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 3359b616ccSAndreas Gohr * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 3459b616ccSAndreas Gohr * POSSIBILITY OF SUCH DAMAGE. 3559b616ccSAndreas Gohr * 3659b616ccSAndreas Gohr * @package SimplePie 37ab0a8902SAndreas Gohr * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue 3859b616ccSAndreas Gohr * @author Ryan Parman 39ab0a8902SAndreas Gohr * @author Sam Sneddon 4059b616ccSAndreas Gohr * @author Ryan McCue 4159b616ccSAndreas Gohr * @link http://simplepie.org/ SimplePie 4259b616ccSAndreas Gohr * @license http://www.opensource.org/licenses/bsd-license.php BSD License 4359b616ccSAndreas Gohr */ 4459b616ccSAndreas Gohr 45*2afbbbaeSAndreas Gohruse SimplePie\Cache\DB; 4659b616ccSAndreas Gohr 47*2afbbbaeSAndreas Gohrclass_exists('SimplePie\Cache\DB'); 4859b616ccSAndreas Gohr 49*2afbbbaeSAndreas Gohr// @trigger_error(sprintf('Using the "SimplePie_Cache_DB" class is deprecated since SimplePie 1.7.0, use "SimplePie\Cache\DB" instead.'), \E_USER_DEPRECATED); 5059b616ccSAndreas Gohr 51*2afbbbaeSAndreas Gohrif (\false) { 52*2afbbbaeSAndreas Gohr /** @deprecated since SimplePie 1.7.0, use "SimplePie\Cache\DB" instead */ 53*2afbbbaeSAndreas Gohr abstract class SimplePie_Cache_DB extends DB 5459b616ccSAndreas Gohr { 5559b616ccSAndreas Gohr } 5659b616ccSAndreas Gohr} 57