mogody / hyperf-responsable
Responsable Interface for Responses
v2.1.0
2021-01-29 01:32 UTC
Requires
- php: >=7.2
- ext-json: *
- hyperf/http-server: ^2.0.0
- psr/http-message: ^1.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.9
- hyperf/di: ^2.0.0
- hyperf/testing: ^2.0.0
- mockery/mockery: ^1.0
- phpstan/phpstan: ^0.12
- phpunit/phpunit: ^7.0.0
This package is auto-updated.
Last update: 2025-03-29 01:10:54 UTC
README
让 Hyperf 支持新的返回类型 Responsable 接口。从控制器返回时,该接口将对象转换为 HTTP 响应实例,实现 Responsable 接口需要实现一个 toResponse() 表示该对象作为 HTTP 响应方法。
<?php namespace App\Response; use Mogody\Responsable\Contract\Responsable; use Psr\Http\Message\RequestInterface as PsrRequestInterface; use Psr\Http\Message\ResponseInterface as PsrResponseInterface; class ExampleObject implements Responsable { public function __construct($name = null) { $this->name = $name ?? 'Teapot'; } public function status() { switch(strtolower($this->name)) { case 'teapot': return 418; default: return 200; } } public function toResponse(PsrRequestInterface $request): PsrResponseInterface { $response = \Hyperf\Utils\Context::get(PsrResponseInterface::class); return $response->withBody(new \Hyperf\HttpMessage\Stream\SwooleStream("Hello {$this->name}")); } }
然后在控制器中:
<?php namespace App\Controller; use App\Response\ExampleObject; class PostsController { public function index() { return new ExampleObject('Taylor'); } }