summaryrefslogtreecommitdiff
path: root/tests/Unit/Http/Stub/MessageTraitImplementation.php
blob: d78fd0b2a67d0e3ab028fe90b9b86a838bddcddf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

namespace Engelsystem\Test\Unit\Http\Stub;

use Engelsystem\Http\MessageTrait;
use Psr\Http\Message\MessageInterface;
use Symfony\Component\HttpFoundation\Response;

class MessageTraitImplementation extends Response implements MessageInterface
{
    use MessageTrait;
}