123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?php
- /*
- * This file is part of the Stash package.
- *
- * (c) Robert Hafner <tedivm@tedivm.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Stash\Test\Stubs;
- use Stash;
- use Stash\Driver\AbstractDriver;
- use Stash\Test\Exception\TestException;
- /**
- * DriverExceptionStub is used for testing how Stash reacts to thrown errors. Every function but the constructor throws
- * an exception.
- *
- * @package Stash
- * @author Robert Hafner <tedivm@tedivm.com>
- *
- * @codeCoverageIgnore
- */
- class DriverUnavailableStub extends AbstractDriver
- {
- protected $store = array();
- public function getData($key)
- {
- throw new TestException('Test exception for ' . __FUNCTION__ . ' call');
- }
- protected function getKeyIndex($key)
- {
- throw new TestException('Test exception for ' . __FUNCTION__ . ' call');
- }
- public function storeData($key, $data, $expiration)
- {
- throw new TestException('Test exception for ' . __FUNCTION__ . ' call');
- }
- public function clear($key = null)
- {
- throw new TestException('Test exception for ' . __FUNCTION__ . ' call');
- }
- public function purge()
- {
- throw new TestException('Test exception for ' . __FUNCTION__ . ' call');
- }
- public function canEnable()
- {
- return false;
- }
- public static function isAvailable()
- {
- return false;
- }
- }
|