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