diff options
Diffstat (limited to 'tests/Unit/Http/Stub/MessageTraitResponseImplementation.php')
-rw-r--r-- | tests/Unit/Http/Stub/MessageTraitResponseImplementation.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/Unit/Http/Stub/MessageTraitResponseImplementation.php b/tests/Unit/Http/Stub/MessageTraitResponseImplementation.php new file mode 100644 index 00000000..2ec4b943 --- /dev/null +++ b/tests/Unit/Http/Stub/MessageTraitResponseImplementation.php @@ -0,0 +1,12 @@ +<?php + +namespace Engelsystem\Test\Unit\Http\Stub; + +use Engelsystem\Http\MessageTrait; +use Psr\Http\Message\MessageInterface; +use Symfony\Component\HttpFoundation\Response; + +class MessageTraitResponseImplementation extends Response implements MessageInterface +{ + use MessageTrait; +} |