On Sun, Aug 14, 2016 at 12:32 PM, Matthieu Napoli <[email protected]> wrote:
> so I wonder why we aren't using __invoke in that interface too
>
> That's a very good idea, it might be a good middle ground:
>
>
> interface Next
>
> {
>
> public function __invoke(ServerRequestInterface $request) :
> ResponseInterface;
>
> }
I'm comfortable with this approach. The type hint would still have to
be included, though:
public function process(ServerRequestInterface $request, NextInterface $next)
{
return $next($request);
}
I also don't love name NextInterface but... naming things is hard.
--
Woody Gilk
http://about.me/shadowhand
>
> --
> You received this message because you are subscribed to the Google Groups
> "PHP Framework Interoperability Group" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> To post to this group, send email to [email protected].
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/php-fig/etPan.57b0ab4a.72d7b9d0.16394%40mnapoli.fr.
>
> For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "PHP
Framework Interoperability Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/php-fig/CAGOJM6J2XHgoPGNGYLL%2BsV52wq%2BvmZUYCZnnv%2BaJpnKzOK5CQA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.