xref: /plugin/smtp/vendor/psr/log/Psr/Log/Test/DummyTest.php (revision ee5c02056e482f4a07fb4b075ec45c4dfd3de0e8)
1*ee5c0205SAndreas Gohr<?php
2*ee5c0205SAndreas Gohr
3*ee5c0205SAndreas Gohrnamespace Psr\Log\Test;
4*ee5c0205SAndreas Gohr
5*ee5c0205SAndreas Gohr/**
6*ee5c0205SAndreas Gohr * This class is internal and does not follow the BC promise.
7*ee5c0205SAndreas Gohr *
8*ee5c0205SAndreas Gohr * Do NOT use this class in any way.
9*ee5c0205SAndreas Gohr *
10*ee5c0205SAndreas Gohr * @internal
11*ee5c0205SAndreas Gohr */
12*ee5c0205SAndreas Gohrclass DummyTest
13*ee5c0205SAndreas Gohr{
14*ee5c0205SAndreas Gohr    public function __toString()
15*ee5c0205SAndreas Gohr    {
16*ee5c0205SAndreas Gohr        return 'DummyTest';
17*ee5c0205SAndreas Gohr    }
18*ee5c0205SAndreas Gohr}
19