Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding missing MockEncrypt class #257

Merged
merged 1 commit into from Jan 10, 2012
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
17 changes: 17 additions & 0 deletions tests/mocks/storage/session/strategy/MockEncrypt.php
@@ -0,0 +1,17 @@
<?php
/**
* Lithium: the most rad php framework
*
* @copyright Copyright 2012, Union of RAD (http://union-of-rad.org)
* @license http://opensource.org/licenses/bsd-license.php The BSD License
*/

namespace lithium\tests\mocks\storage\session\strategy;

class MockEncrypt extends \lithium\storage\session\strategy\Encrypt {
public function decrypt($encrypted) {
return parent::_decrypt($encrypted);
}
}

?>