D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
psa
/
admin
/
plib
/
modules
/
mfa
/
vendor
/
tedivm
/
stash
/
tests
/
Stash
/
Test
/
Stubs
/
Filename :
DriverExceptionStub.php
back
Copy
<?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 DriverExceptionStub 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 (defined('TESTING') && TESTING); } public static function isAvailable() { return (defined('TESTING') && TESTING); } }