blob: 2ec4b9437a502145a005631510d797d0f8d13579 (
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 MessageTraitResponseImplementation extends Response implements MessageInterface
{
use MessageTrait;
}
|