1<?php
2/**
3 * A class that pretends to be a string.
4 *
5 * PHP version 5
6 *
7 * @category   Horde
8 * @package    Secret
9 * @subpackage UnitTests
10 * @author     Gunnar Wrobel <wrobel@pardus.de>
11 * @license    http://www.horde.org/licenses/lgpl21 LGPL 2.1
12 * @link       http://pear.horde.org/index.php?package=Secret
13 */
14class Horde_Secret_Stub_Message
15{
16    public function __toString()
17    {
18        return 'secret';
19    }
20}